2016-04-11 18:06:55 -06:00
|
|
|
set (libname "vcap")
|
|
|
|
set (libdescription "upm Video Frame Capture and image save utility")
|
|
|
|
set (module_src ${libname}.cxx)
|
2016-04-25 14:27:51 -07:00
|
|
|
set (module_hpp ${libname}.hpp)
|
2016-04-11 18:06:55 -06:00
|
|
|
set (reqlibname "jpeg")
|
|
|
|
upm_module_init()
|
|
|
|
target_link_libraries(${libname} jpeg)
|
|
|
|
if (BUILDSWIG)
|
|
|
|
if (BUILDSWIGNODE)
|
2016-04-29 15:53:39 -06:00
|
|
|
swig_link_libraries (jsupm_${libname} jpeg)
|
2016-04-11 18:06:55 -06:00
|
|
|
endif()
|
|
|
|
if (BUILDSWIGPYTHON)
|
2016-04-29 15:53:39 -06:00
|
|
|
swig_link_libraries (pyupm_${libname} jpeg)
|
2016-04-11 18:06:55 -06:00
|
|
|
endif()
|
|
|
|
if (BUILDSWIGJAVA)
|
2016-04-29 15:53:39 -06:00
|
|
|
swig_link_libraries (javaupm_${libname} jpeg)
|
2016-04-11 18:06:55 -06:00
|
|
|
endif()
|
|
|
|
endif()
|