Commit 14f65f79 authored by Ethan Rublee's avatar Ethan Rublee

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

not enabled.
parent 4b5e53b3
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment