[DEV] update to future lutin 2.0
This commit is contained in:
parent
44f5b8ab5f
commit
aa8a3333fe
@ -14,7 +14,7 @@ def create(target, module_name):
|
|||||||
module_name,
|
module_name,
|
||||||
"doc"
|
"doc"
|
||||||
])
|
])
|
||||||
my_module.add_module_depend([
|
my_module.add_depend([
|
||||||
'etk'
|
'etk'
|
||||||
])
|
])
|
||||||
my_module.add_sample_path([
|
my_module.add_sample_path([
|
||||||
|
@ -29,6 +29,6 @@ def create(target, module_name):
|
|||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
'sample/sampleAll.cpp'
|
'sample/sampleAll.cpp'
|
||||||
])
|
])
|
||||||
my_module.add_module_depend(['eproperty', 'test-debug'])
|
my_module.add_depend(['eproperty', 'test-debug'])
|
||||||
return my_module
|
return my_module
|
||||||
|
|
||||||
|
@ -34,6 +34,6 @@ def create(target, module_name):
|
|||||||
'test/test_range.cpp',
|
'test/test_range.cpp',
|
||||||
'test/test_value.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
|
return my_module
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ def get_version():
|
|||||||
|
|
||||||
def create(target, module_name):
|
def create(target, module_name):
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
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([
|
my_module.add_src_file([
|
||||||
'eproperty/debug.cpp',
|
'eproperty/debug.cpp',
|
||||||
'eproperty/Property.cpp',
|
'eproperty/Property.cpp',
|
||||||
@ -48,9 +48,9 @@ def create(target, module_name):
|
|||||||
'eproperty/details/Range.hxx',
|
'eproperty/details/Range.hxx',
|
||||||
'eproperty/details/Value.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.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()) + "\\\"\""
|
"-DEPROPERTY_VERSION=\"\\\"" + tools.version_to_string(get_version()) + "\\\"\""
|
||||||
])
|
])
|
||||||
return my_module
|
return my_module
|
||||||
|
Loading…
x
Reference in New Issue
Block a user