[DEV] remove lutin builder

This commit is contained in:
Edouard DUPIN 2015-06-15 18:40:27 +02:00
parent 1160bbe7ab
commit 096f406289
3 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
#!/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'
])
myModule.compile_version_CC(1999)
myModule.add_export_path(tools.get_current_path(__file__))
# add the currrent module at the
return myModule