70 lines
1.6 KiB
Python
70 lines
1.6 KiB
Python
#!/usr/bin/python
|
|
import lutin.module as module
|
|
import lutin.tools as tools
|
|
import os
|
|
|
|
def get_type():
|
|
return "LIBRARY"
|
|
|
|
def get_desc():
|
|
return "opencv shape processing library"
|
|
|
|
def get_licence():
|
|
return "APAPCHE-2"
|
|
|
|
def get_maintainer():
|
|
return ["Maksim Shabunin <maksim.shabunin@itseez.com>"]
|
|
|
|
def get_version():
|
|
return [3,1,0]
|
|
|
|
def create(target, module_name):
|
|
my_module = module.Module(__file__, module_name, get_type())
|
|
my_module.add_src_file([
|
|
'opencv/modules/shape/src/tps_trans.cpp',
|
|
'opencv/modules/shape/src/aff_trans.cpp',
|
|
'opencv/modules/shape/src/precomp.cpp',
|
|
'opencv/modules/shape/src/sc_dis.cpp',
|
|
'opencv/modules/shape/src/emdL1.cpp',
|
|
'opencv/modules/shape/src/hist_cost.cpp',
|
|
'opencv/modules/shape/src/haus_dis.cpp',
|
|
])
|
|
|
|
my_module.compile_flags('c++', [
|
|
"-DCVAPI_EXPORTS",
|
|
"-D__OPENCV_BUILD=1",
|
|
"-fsigned-char",
|
|
"-W",
|
|
"-Wall",
|
|
"-Werror=return-type",
|
|
"-Werror=non-virtual-dtor",
|
|
"-Werror=address",
|
|
"-Werror=sequence-point",
|
|
"-Wformat",
|
|
"-Werror=format-security",
|
|
"-Wmissing-declarations",
|
|
"-Winit-self",
|
|
"-Wpointer-arith",
|
|
"-Wshadow",
|
|
"-Wsign-promo",
|
|
"-Wno-narrowing",
|
|
"-Wno-delete-non-virtual-dtor",
|
|
"-fdiagnostics-show-option",
|
|
"-Wno-long-long",
|
|
"-fomit-frame-pointer",
|
|
"-ffunction-sections",
|
|
"-fvisibility=hidden",
|
|
"-fvisibility-inlines-hidden",
|
|
])
|
|
my_module.add_header_file(
|
|
"opencv/modules/shape/include/*",
|
|
recursive=True)
|
|
my_module.add_module_depend([
|
|
'opencv-core',
|
|
'opencv-video'
|
|
])
|
|
my_module.compile_version("C++", 2003)
|
|
return my_module
|
|
|
|
|