webp-lutin/lutin_webp-webpinfo.py

71 lines
1.0 KiB
Python

#!/usr/bin/python
import realog.debug as debug
import lutin.tools as tools
import os
def get_type():
return "BINARY"
def get_desc():
return "webp-webpinfo 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/webpinfo.c',
])
my_module.add_header_file([
'webp/examples/*.h',
], clip_path='webp')
my_module.add_path([
'webp/examples',
'webp/build/src/',
'webp/src/',
], export=False)
my_module.add_flag('c', [
'-DHAVE_CONFIG_H',
'-DNDEBUG',
])
my_module.add_flag('link', [
'-DNDEBUG',
])
my_module.add_flag('c', [
'-Wall',
])
my_module.add_depend([
'cxx',
'webp-exampleutil',
'webp-imageioutil',
'webp-webp',
'pthread',
'm',
'webp-webp',
])
return True