From 3d7a3a51a7f384e39ec50c2ed56d39de37cd7d5d Mon Sep 17 00:00:00 2001 From: Alexander Alekhin <alexander.alekhin@intel.com> Date: Mon, 1 Apr 2019 17:30:10 +0300 Subject: [PATCH] cmake: don't add tests dirs as include directories - use relative paths for includes - fix PCH generation with GCC (dummy file has been used) --- cmake/OpenCVModule.cmake | 4 ++-- cmake/OpenCVPCHSupport.cmake | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cmake/OpenCVModule.cmake b/cmake/OpenCVModule.cmake index 5f41ce42a0..3aef09af22 100644 --- a/cmake/OpenCVModule.cmake +++ b/cmake/OpenCVModule.cmake @@ -1148,7 +1148,7 @@ function(ocv_add_perf_tests) source_group("Src" FILES "${${the_target}_pch}") ocv_add_executable(${the_target} ${OPENCV_PERF_${the_module}_SOURCES} ${${the_target}_pch}) - ocv_target_include_modules(${the_target} ${perf_deps} "${perf_path}") + ocv_target_include_modules(${the_target} ${perf_deps}) ocv_target_link_libraries(${the_target} LINK_PRIVATE ${perf_deps} ${OPENCV_MODULE_${the_module}_DEPS} ${OPENCV_LINKER_LIBS} ${OPENCV_PERF_${the_module}_DEPS}) add_dependencies(opencv_perf_tests ${the_target}) @@ -1239,7 +1239,7 @@ function(ocv_add_accuracy_tests) source_group("Src" FILES "${${the_target}_pch}") ocv_add_executable(${the_target} ${OPENCV_TEST_${the_module}_SOURCES} ${${the_target}_pch}) - ocv_target_include_modules(${the_target} ${test_deps} "${test_path}") + ocv_target_include_modules(${the_target} ${test_deps}) if(EXISTS "${CMAKE_CURRENT_BINARY_DIR}/test") ocv_target_include_directories(${the_target} "${CMAKE_CURRENT_BINARY_DIR}/test") endif() diff --git a/cmake/OpenCVPCHSupport.cmake b/cmake/OpenCVPCHSupport.cmake index f9b1b48b65..59bc826ed0 100644 --- a/cmake/OpenCVPCHSupport.cmake +++ b/cmake/OpenCVPCHSupport.cmake @@ -261,6 +261,7 @@ MACRO(ADD_PRECOMPILED_HEADER _targetName _input) ) _PCH_GET_COMPILE_FLAGS(_compile_FLAGS) + list(APPEND _compile_FLAGS "${_PCH_include_prefix}\"${_path}\"") get_target_property(type ${_targetName} TYPE) if(type STREQUAL "SHARED_LIBRARY")