Commit 169ebae8 authored by Pablo Speciale's avatar Pablo Speciale

After commit c7bbd1ae, 'include_directories()' is needed in the CMakeLists.txt…

After commit c7bbd1ae, 'include_directories()' is needed in the CMakeLists.txt (user side). This commit updates the documentation.
parent 447e03bc
......@@ -58,6 +58,7 @@ Now you have to create your CMakeLists.txt file. It should look like this:
cmake_minimum_required(VERSION 2.8)
project( DisplayImage )
find_package( OpenCV REQUIRED )
include_directories( ${OpenCV_INCLUDE_DIRS} )
add_executable( DisplayImage DisplayImage.cpp )
target_link_libraries( DisplayImage ${OpenCV_LIBS} )
......
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