[DEV] update to future lutin 2.0

This commit is contained in:
Edouard DUPIN 2016-09-08 21:35:02 +02:00
parent 44f5b8ab5f
commit aa8a3333fe
4 changed files with 6 additions and 6 deletions

View File

@ -14,7 +14,7 @@ def create(target, module_name):
module_name,
"doc"
])
my_module.add_module_depend([
my_module.add_depend([
'etk'
])
my_module.add_sample_path([

View File

@ -29,6 +29,6 @@ def create(target, module_name):
my_module.add_src_file([
'sample/sampleAll.cpp'
])
my_module.add_module_depend(['eproperty', 'test-debug'])
my_module.add_depend(['eproperty', 'test-debug'])
return my_module

View File

@ -34,6 +34,6 @@ def create(target, module_name):
'test/test_range.cpp',
'test/test_value.cpp'
])
my_module.add_module_depend(['eproperty', 'gtest', 'test-debug'])
my_module.add_depend(['eproperty', 'gtest', 'test-debug'])
return my_module

View File

@ -28,7 +28,7 @@ def get_version():
def create(target, module_name):
my_module = module.Module(__file__, module_name, get_type())
my_module.add_extra_compile_flags()
my_module.add_extra_flags()
my_module.add_src_file([
'eproperty/debug.cpp',
'eproperty/Property.cpp',
@ -48,9 +48,9 @@ def create(target, module_name):
'eproperty/details/Range.hxx',
'eproperty/details/Value.hxx',
])
my_module.add_module_depend(['etk'])
my_module.add_depend(['etk'])
my_module.add_path(tools.get_current_path(__file__))
my_module.compile_flags('c++', [
my_module.add_flag('c++', [
"-DEPROPERTY_VERSION=\"\\\"" + tools.version_to_string(get_version()) + "\\\"\""
])
return my_module