moved tools to ext - makes more sense, as it contains external libs, not tools

This commit is contained in:
Nick Bolton 2014-02-26 16:52:54 +00:00
parent 8d6a44d1b7
commit 50a4f310c9
287 changed files with 19 additions and 19 deletions

View File

@ -309,7 +309,7 @@ else() # not-unix
endif() endif()
add_subdirectory(src) add_subdirectory(src)
add_subdirectory(tools) add_subdirectory(ext)
if (WIN32) if (WIN32)
# TODO: consider using /analyze to uncover potential bugs in the source code. # TODO: consider using /analyze to uncover potential bugs in the source code.

View File

@ -40,7 +40,7 @@ class InternalCommands:
cmake_dir = 'res' cmake_dir = 'res'
gui_dir = 'src/gui' gui_dir = 'src/gui'
doc_dir = 'doc' doc_dir = 'doc'
toolsDir = 'tools' extDir = 'ext'
sln_filename = '%s.sln' % project sln_filename = '%s.sln' % project
xcodeproj_filename = '%s.xcodeproj' % project xcodeproj_filename = '%s.xcodeproj' % project
@ -138,7 +138,7 @@ class InternalCommands:
def checkCryptoPP(self): def checkCryptoPP(self):
dir = self.toolsDir + '/' + self.cryptoPPDir dir = self.extDir + '/' + self.cryptoPPDir
if (os.path.isdir(dir)): if (os.path.isdir(dir)):
return return

Some files were not shown because too many files have changed in this diff Show More