[DEV] update dev tag version

This commit is contained in:
Edouard DUPIN 2016-09-12 22:32:19 +02:00
parent 79b6fef20d
commit a2ed494407
4 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@ def create(target, module_name):
my_module.add_sample_path([
"sample",
])
my_module.add_module_depend([
my_module.add_depend([
'elog',
'etk',
'ememory'

View File

@ -31,7 +31,7 @@ def create(target, module_name):
'sample/read.cpp',
'sample/write.cpp'
])
my_module.add_module_depend(['exml', 'test-debug'])
my_module.add_depend(['exml', 'test-debug'])
my_module.copy_path('sample/read.xml')
return my_module

View File

@ -44,6 +44,6 @@ def create(target, module_name):
'test/exmlTestParseAttribute.cpp',
'test/exmlTestParseDeclaration.cpp'
])
my_module.add_module_depend(['exml', 'gtest', 'test-debug'])
my_module.add_depend(['exml', 'gtest', 'test-debug'])
return my_module

View File

@ -26,8 +26,8 @@ def get_version():
def create(target, module_name):
my_module = module.Module(__file__, module_name, get_type())
my_module.add_module_depend(['elog', 'etk', 'ememory'])
my_module.add_extra_compile_flags()
my_module.add_depend(['elog', 'etk', 'ememory'])
my_module.add_extra_flags()
my_module.add_src_file([
'exml/debug.cpp',
'exml/FilePos.cpp',