sustaining_gazes/exe/FaceLandmarkVid/CMakeLists.txt
simonmssu d9d4b10a52 Update CMakeLists.txt
to specify the location of TBB header file
2016-07-11 16:12:34 -04:00

19 lines
629 B
CMake

#TBB library
include_directories(${TBB_ROOT_DIR}/include)
add_executable(FaceLandmarkVid FaceLandmarkVid.cpp)
# Local libraries
include_directories(${LandmarkDetector_SOURCE_DIR}/include)
include_directories(../../lib/local/LandmarkDetector/include)
include_directories(../../lib/local/FaceAnalyser/include)
target_link_libraries(FaceLandmarkVid LandmarkDetector)
target_link_libraries(FaceLandmarkVid FaceAnalyser)
target_link_libraries(FaceLandmarkVid dlib)
target_link_libraries(FaceLandmarkVid ${OpenCV_LIBS} ${Boost_LIBRARIES} ${TBB_LIBRARIES})
install (TARGETS FaceLandmarkVid DESTINATION ${CMAKE_BINARY_DIR}/bin)