Commit be4251c1 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

fixed compile problems when Makefiles are used

parent d2c2c07a
...@@ -106,10 +106,10 @@ macro(define_opencv_module name) ...@@ -106,10 +106,10 @@ macro(define_opencv_module name)
add_executable(${the_target} ${test_srcs} ${test_hdrs}) add_executable(${the_target} ${test_srcs} ${test_hdrs})
if(PCHSupport_FOUND) if(PCHSupport_FOUND)
set(pch_header ${CMAKE_CURRENT_SOURCE_DIR}/test/precomp.hpp) set(pch_header ${CMAKE_CURRENT_SOURCE_DIR}/test/test_precomp.hpp)
if(${CMAKE_GENERATOR} MATCHES "Visual*" OR ${CMAKE_GENERATOR} MATCHES "Xcode*") if(${CMAKE_GENERATOR} MATCHES "Visual*" OR ${CMAKE_GENERATOR} MATCHES "Xcode*")
if(${CMAKE_GENERATOR} MATCHES "Visual*") if(${CMAKE_GENERATOR} MATCHES "Visual*")
set(${the_target}_pch "test/precomp.cpp") set(${the_target}_pch "test/test_precomp.cpp")
endif() endif()
add_native_precompiled_header(${the_target} ${pch_header}) add_native_precompiled_header(${the_target} ${pch_header})
elseif(CMAKE_COMPILER_IS_GNUCXX AND ${CMAKE_GENERATOR} MATCHES ".*Makefiles") elseif(CMAKE_COMPILER_IS_GNUCXX AND ${CMAKE_GENERATOR} MATCHES ".*Makefiles")
......
#include "precomp.hpp" #include "test_precomp.hpp"
#include <iostream> #include <iostream>
using namespace cv; using namespace cv;
......
#include "precomp.hpp" #include "test_precomp.hpp"
#include "opencv2/gtest/gtest_main.hpp" #include "opencv2/gtest/gtest_main.hpp"
#include "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