Wrapping the tests in an if guard. Fails to build if the BUILD_TESTS flag is

not enabled.
This commit is contained in:
Ethan Rublee 2011-06-01 18:04:46 +00:00
parent 4b5e53b33b
commit 14f65f79f0

View File

@ -356,7 +356,7 @@ install(FILES ${highgui_ext_hdrs}
############################# highgui tests ################################
if(BUILD_TESTS)
include_directories("${CMAKE_CURRENT_SOURCE_DIR}/test"
"${CMAKE_CURRENT_BINARY_DIR}")
@ -378,6 +378,7 @@ source_group("Include" FILES ${test_hdrs})
set(the_target "opencv_test_highgui")
add_executable(${the_target} ${test_srcs} ${test_hdrs})
endif(BUILD_TETSTS)
if(PCHSupport_FOUND AND USE_PRECOMPILED_HEADERS)
set(pch_header ${CMAKE_CURRENT_SOURCE_DIR}/test/test_precomp.hpp)