Browse Source

add opencv to utils cmake

pull/1/head
Vanessa Bock 1 year ago
parent
commit
103030c369
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      Utils/CMakeLists.txt

+ 5
- 0
Utils/CMakeLists.txt View File

@@ -1,7 +1,12 @@
find_package( OpenCV REQUIRED )
include_directories( ${OpenCV_INCLUDE_DIRS} )

add_library(Utils utils.cpp)
set_target_properties(Utils PROPERTIES VERSION ${PROJECT_VERSION})
target_include_directories(Utils PRIVATE .)

target_link_libraries( Utils ${OpenCV_LIBS} )

set(CPACK_PROJECT_NAME ${PROJECT_NAME})
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
include(CPack)

Loading…
Cancel
Save