gst-plugin-linescan/gst/CMakeLists.txt
Joshua M. Doe a6e97d08df klv: make KLV support optional via ENABLE_KLV, disabled by default
This prevents the building of the klv library and plugin, and disables KLV
support and dependency in the Pleora plugin.
2020-04-15 12:34:07 -04:00

15 lines
265 B
CMake

if (OPENCV_FOUND)
add_subdirectory (sensorfx)
endif (OPENCV_FOUND)
add_subdirectory (bayerutils)
add_subdirectory (extractcolor)
if (ENABLE_KLV)
add_subdirectory (klv)
endif ()
add_subdirectory (misb)
add_subdirectory (select)
add_subdirectory (videoadjust)