[DEV] update etk-core

This commit is contained in:
Edouard DUPIN 2018-09-07 23:51:16 +02:00
parent 8a5d7428e9
commit 1f5e6637ec
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ def configure(target, my_module):
my_module.compile_version("c++", 2011)
my_module.compile_version("c", 1999)
# add dependency of the generic C++ library:
my_module.add_optionnal_depend('etk-base')
my_module.add_optionnal_depend('etk-core')
my_module.add_optionnal_depend('ethread-tools', ["c++", "-DELOG_BUILD_ETHREAD"])
if "Windows" in target.get_type():

View File

@ -32,7 +32,7 @@ def configure(target, my_module):
my_module.add_header_file([
'test-debug/debug.hpp'
])
my_module.add_depend('etk-base')
my_module.add_depend('etk-core')
my_module.add_path(".")
return True