edtaa3-lutin/lutin_edtaa3.py

36 lines
602 B
Python
Raw Normal View History

2015-06-15 18:41:33 +02:00
#!/usr/bin/python
import lutin.debug as debug
2015-06-15 18:41:33 +02:00
import lutin.tools as tools
2015-10-14 21:21:03 +02:00
def get_type():
return "LIBRARY"
2015-06-15 18:41:33 +02:00
def get_desc():
return "edtaa3 library (create distance field from image)"
2015-10-14 21:21:03 +02:00
def get_licence():
return "BSD-2"
def get_maintainer():
return ["Stefan Gustavson <stefan.gustavson@gmail.com>"]
def get_version():
return [0,5]
def configure(target, my_module):
2015-09-24 21:44:04 +02:00
my_module.add_src_file([
'edtaa3/edtaa3func.c'
])
2015-09-24 21:44:04 +02:00
my_module.add_header_file([
'edtaa3/edtaa3func.h'
])
2015-10-14 21:21:03 +02:00
my_module.compile_version("C", 1999)
2016-09-08 21:35:02 +02:00
my_module.add_depend([
'c',
'm'
])
return True
2015-06-15 18:41:33 +02:00