etk/lutin_etktest.py

23 lines
431 B
Python
Raw Normal View History

2013-07-11 11:23:25 +02:00
#!/usr/bin/python
2013-12-23 22:38:46 +01:00
import lutinModule as module
import lutinTools as tools
2013-07-11 11:23:25 +02:00
import datetime
2013-12-23 22:38:46 +01:00
def get_desc():
return "e-tk test software"
def create(target):
2013-07-11 11:23:25 +02:00
# module name is 'edn' and type binary.
2013-12-23 22:38:46 +01:00
myModule = module.Module(__file__, 'etktest', 'BINARY')
2013-07-11 11:23:25 +02:00
# add the file to compile:
2013-12-23 22:38:46 +01:00
myModule.add_src_file([
2013-07-11 11:23:25 +02:00
'test/main.cpp'])
2013-12-23 22:38:46 +01:00
myModule.add_module_depend(['etk'])
2013-07-11 11:23:25 +02:00
2013-07-11 13:35:49 +02:00
# add the currrent module at the system
2013-07-11 11:23:25 +02:00
return myModule