Fix an issue in cmake tutorial
This commit is contained in:
parent
bb0631a365
commit
b80142be69
@ -53,9 +53,9 @@ Now you have to create your CMakeLists.txt file. It should look like this:
|
|||||||
cmake_minimum_required(VERSION 2.8)
|
cmake_minimum_required(VERSION 2.8)
|
||||||
project( DisplayImage )
|
project( DisplayImage )
|
||||||
find_package( OpenCV REQUIRED )
|
find_package( OpenCV REQUIRED )
|
||||||
include_directories( \f${OpenCV_INCLUDE_DIRS} )
|
include_directories( ${OpenCV_INCLUDE_DIRS} )
|
||||||
add_executable( DisplayImage DisplayImage.cpp )
|
add_executable( DisplayImage DisplayImage.cpp )
|
||||||
target_link_libraries( DisplayImage \f${OpenCV_LIBS} )
|
target_link_libraries( DisplayImage ${OpenCV_LIBS} )
|
||||||
@endcode
|
@endcode
|
||||||
### Generate the executable
|
### Generate the executable
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user