edtaa3-lutin/lutin_edtaa3.py

23 lines
518 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.
myModule = module.Module(__file__, 'edtaa3', 'LIBRARY')
# add the file to compile:
myModule.add_src_file([
'edtaa3/edtaa3func.c'
])
2015-09-14 21:11:04 +02:00
myModule.add_header_file([
'edtaa3/edtaa3func.h'
])
2015-06-15 18:41:33 +02:00
myModule.compile_version_CC(1999)
2015-09-14 21:11:04 +02:00
myModule.add_path(tools.get_current_path(__file__))
2015-06-15 18:41:33 +02:00
return myModule