edtaa3-lutin/lutin_edtaa3.py

23 lines
524 B
Python
Raw Normal View History

2015-06-15 18:41:33 +02:00
#!/usr/bin/python
import lutin.module as module
import lutin.tools as tools
def get_desc():
return "edtaa3 library (create distance field from image)"
def create(target):
# module name is 'edn' and type binary.
2015-09-24 21:44:04 +02:00
my_module = module.Module(__file__, 'edtaa3', 'LIBRARY')
2015-06-15 18:41:33 +02:00
# add the file to compile:
2015-09-24 21:44:04 +02:00
my_module.add_src_file([
2015-06-15 18:41:33 +02:00
'edtaa3/edtaa3func.c'
])
2015-09-24 21:44:04 +02:00
my_module.add_header_file([
2015-09-14 21:11:04 +02:00
'edtaa3/edtaa3func.h'
])
2015-09-24 21:44:04 +02:00
my_module.compile_version_CC(1999)
my_module.add_path(tools.get_current_path(__file__))
return my_module
2015-06-15 18:41:33 +02:00