moved tools to ext - makes more sense, as it contains external libs, not tools
This commit is contained in:
parent
8d6a44d1b7
commit
50a4f310c9
|
@ -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.
|
||||||
|
|
|
@ -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
Loading…
Reference in New Issue