ephysics/lutin_ephysics-test.py

41 lines
604 B
Python
Raw Normal View History

2017-05-11 22:38:39 +02:00
#!/usr/bin/python
import lutin.debug as debug
import lutin.tools as tools
def get_type():
return "BINARY"
def get_sub_type():
return "TEST"
def get_desc():
return "Ewol Physic engine TEST UNIT"
def get_licence():
return "BSD-3"
def get_compagny_type():
return "com"
def get_compagny_name():
return "atria-soft"
def get_maintainer():
return "authors.txt"
def configure(target, my_module):
my_module.add_src_file([
2017-06-08 22:35:22 +02:00
'test/Test.cpp',
'test/TestSuite.cpp',
'test/main.cpp'
])
2017-05-11 22:38:39 +02:00
my_module.add_depend([
2017-06-08 22:35:22 +02:00
'ephysics',
2017-09-29 00:37:47 +02:00
'etest',
2017-06-08 22:35:22 +02:00
'test-debug'
])
2017-05-11 22:22:07 +00:00
my_module.add_path(".")
2017-05-11 22:38:39 +02:00
return True