[DEV] update next lutin version

This commit is contained in:
Edouard DUPIN 2015-09-24 21:44:04 +02:00
parent 683cf7471b
commit 83296899bd
2 changed files with 10 additions and 10 deletions

View File

@ -12,19 +12,19 @@ def get_licence():
} }
def create(target): def create(target):
myModule = module.Module(__file__, 'enet-test', 'BINARY') my_module = module.Module(__file__, 'enet-test', 'BINARY')
myModule.add_module_depend(['enet', 'gtest']) my_module.add_module_depend(['enet', 'gtest'])
myModule.add_src_file([ my_module.add_src_file([
'test/debug.cpp', 'test/debug.cpp',
'test/main.cpp' 'test/main.cpp'
]) ])
myModule.add_export_path(tools.get_current_path(__file__)) my_module.add_export_path(tools.get_current_path(__file__))
# add the currrent module at the # add the currrent module at the
return myModule return my_module

View File

@ -12,11 +12,11 @@ def get_licence():
} }
def create(target): def create(target):
myModule = module.Module(__file__, 'enet', 'LIBRARY') my_module = module.Module(__file__, 'enet', 'LIBRARY')
myModule.add_module_depend(['etk']) my_module.add_module_depend(['etk'])
myModule.add_src_file([ my_module.add_src_file([
'enet/debug.cpp', 'enet/debug.cpp',
'enet/Udp.cpp', 'enet/Udp.cpp',
'enet/Tcp.cpp', 'enet/Tcp.cpp',
@ -24,10 +24,10 @@ def create(target):
'enet/Ftp.cpp', 'enet/Ftp.cpp',
]) ])
myModule.add_export_path(tools.get_current_path(__file__)) my_module.add_export_path(tools.get_current_path(__file__))
# add the currrent module at the # add the currrent module at the
return myModule return my_module