make compile of tests optional and disabled by default

Former-commit-id: dc05b637391ec5b7e79d66d94724828e8dbd2653
This commit is contained in:
redpanther 2016-03-10 12:06:03 +01:00
parent 153d1f0999
commit 12b406dd4b
1 changed files with 7 additions and 2 deletions

View File

@ -40,6 +40,9 @@ message(STATUS "ENABLE_X11 = " ${ENABLE_X11})
option(ENABLE_QT5 "Enable QT5" OFF)
message(STATUS "ENABLE_QT5 = " ${ENABLE_QT5})
option(ENABLE_TESTS "Compile additional test applications" OFF)
message(STATUS "ENABLE_TESTS = " ${ENABLE_TESTS})
if(ENABLE_V4L2 AND NOT ENABLE_PROTOBUF)
message(FATAL_ERROR "V4L2 grabber requires PROTOBUF. Disable V4L2 or enable PROTOBUF")
endif(ENABLE_V4L2 AND NOT ENABLE_PROTOBUF)
@ -57,7 +60,6 @@ if(ENABLE_OSX AND ENABLE_DISPMANX)
endif(ENABLE_OSX AND ENABLE_DISPMANX)
#if(ENABLE_QT5)
# TODO vs ENABLE_QT4?
#endif(ENABLE_QT5)
@ -138,7 +140,10 @@ configure_file(config/hyperion_x86.config.json ${LIBRARY_OUTPUT_PATH} @ONLY)
add_subdirectory(dependencies)
add_subdirectory(libsrc)
add_subdirectory(src)
add_subdirectory(test)
if (ENABLE_TESTS)
add_subdirectory(test)
endif (ENABLE_TESTS)
# Add the doxygen generation directory
add_subdirectory(doc)