2017-05-11 22:38:39 +02:00
|
|
|
#!/usr/bin/python
|
2019-05-03 10:18:23 +02:00
|
|
|
import realog.debug as debug
|
2017-05-11 22:38:39 +02:00
|
|
|
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-09-29 23:00:56 +02:00
|
|
|
'test/main.cpp',
|
|
|
|
'test/testAABB.cpp',
|
|
|
|
'test/testCollisionWorld.cpp',
|
|
|
|
'test/testDynamicAABBTree.cpp',
|
|
|
|
'test/testPointInside.cpp',
|
|
|
|
'test/testRaycast.cpp',
|
2017-06-08 22:35:22 +02:00
|
|
|
])
|
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-12 00:22:07 +02:00
|
|
|
my_module.add_path(".")
|
2017-05-11 22:38:39 +02:00
|
|
|
return True
|
|
|
|
|