Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions sample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set (SAMPLE_INCLUDE_PATH "${SAMPLE_PATH}/include")
find_package(OpenCV REQUIRED)

set(Boost_USE_STATIC_LIBS ON)
FIND_PACKAGE(Boost 1.58 COMPONENTS filesystem timer REQUIRED)
FIND_PACKAGE(Boost 1.58 REQUIRED COMPONENTS filesystem timer system)

#set includes
include_directories (
Expand Down Expand Up @@ -42,7 +42,8 @@ target_link_libraries (
${OpenCV_LIBRARIES}
${Boost_LIBRARIES}
${MTCNN_LIB_NAME}
${LINK_OPTIONS})
${LINK_OPTIONS}
Boost::system)

#test
enable_testing ()