enet/lutin_enet-test.py

35 lines
541 B
Python
Raw Normal View History

2014-05-04 22:27:56 +02:00
#!/usr/bin/python
2015-05-08 22:37:50 +02:00
import lutin.module as module
import lutin.tools as tools
2014-05-04 22:27:56 +02:00
def get_desc():
return "e-net TEST test software for enet"
def get_licence():
return {
2014-08-08 23:32:01 +02:00
"assimilate":"APACHE2",
"type":"APACHE-2.0"
2014-05-04 22:27:56 +02:00
}
def create(target):
2015-06-17 21:25:57 +02:00
myModule = module.Module(__file__, 'enet-test', 'BINARY')
2014-05-04 22:27:56 +02:00
2015-06-17 21:25:57 +02:00
myModule.add_module_depend(['enet', 'gtest'])
2014-05-04 22:27:56 +02:00
myModule.add_src_file([
'test/debug.cpp',
'test/main.cpp'
])
myModule.add_export_path(tools.get_current_path(__file__))
# add the currrent module at the
return myModule