Update samples/cpp/example_cmake: no need to use include_directories

This commit is contained in:
Ruslan Baratov 2015-06-17 17:53:05 +02:00
parent f30bf39bd4
commit 83b882039e

View File

@ -18,8 +18,10 @@ message(STATUS " version: ${OpenCV_VERSION}")
message(STATUS " libraries: ${OpenCV_LIBS}") message(STATUS " libraries: ${OpenCV_LIBS}")
message(STATUS " include path: ${OpenCV_INCLUDE_DIRS}") message(STATUS " include path: ${OpenCV_INCLUDE_DIRS}")
# Add OpenCV headers location to your include paths if(CMAKE_VERSION VERSION_LESS "2.8.11")
include_directories(${OpenCV_INCLUDE_DIRS}) # Add OpenCV headers location to your include paths
include_directories(${OpenCV_INCLUDE_DIRS})
endif()
# Declare the executable target built from your sources # Declare the executable target built from your sources
add_executable(opencv_example example.cpp) add_executable(opencv_example example.cpp)