24 lines
490 B
Python
24 lines
490 B
Python
|
#!/usr/bin/python
|
||
|
import lutinModule as module
|
||
|
import lutinTools as tools
|
||
|
import lutinTools
|
||
|
|
||
|
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'
|
||
|
])
|
||
|
|
||
|
myModule.add_export_path(tools.get_current_path(__file__))
|
||
|
|
||
|
# add the currrent module at the
|
||
|
return myModule
|
||
|
|
||
|
|