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.
This commit is contained in:
Joshua M. Doe
2020-04-15 12:34:03 -04:00
parent feca1a7969
commit a6e97d08df
7 changed files with 36 additions and 7 deletions

View File

@@ -4,7 +4,11 @@ endif (OPENCV_FOUND)
add_subdirectory (bayerutils)
add_subdirectory (extractcolor)
add_subdirectory (klv)
if (ENABLE_KLV)
add_subdirectory (klv)
endif ()
add_subdirectory (misb)
add_subdirectory (select)
add_subdirectory (videoadjust)