webp-lutin/lutin_webp-exampleutil.py

62 lines
905 B
Python

#!/usr/bin/python
import realog.debug as debug
import lutin.tools as tools
import os
def get_type():
return "LIBRARY"
def get_desc():
return "webp-exampleutil library"
#def get_licence():
# return "UNKNOW"
def get_compagny_type():
return "org"
def get_compagny_name():
return "webp"
#def get_maintainer():
# return "UNKNOW"
def get_version():
return "version.txt"
def configure(target, my_module):
my_module.add_src_file([
'webp/examples/example_util.c',
])
my_module.add_header_file([
'webp/examples/*.h',
], clip_path='webp')
my_module.add_path([
'webp/examples',
'webp/src/',
'webp/build/src/',
], export=False)
my_module.add_flag('c', [
'-DHAVE_CONFIG_H',
'-DNDEBUG',
])
my_module.add_flag('c', [
'-Wall',
])
my_module.add_depend([
'cxx',
'pthread',
'webp-webp',
])
return True