2016-07-11 22:11:02 +02:00
|
|
|
#TBB library
|
|
|
|
include_directories(${TBB_ROOT_DIR}/include)
|
|
|
|
|
2016-04-28 21:40:36 +02:00
|
|
|
# Local libraries
|
|
|
|
include_directories(${LandmarkDetector_SOURCE_DIR}/include)
|
|
|
|
|
|
|
|
include_directories(../../lib/local/LandmarkDetector/include)
|
|
|
|
include_directories(../../lib/local/FaceAnalyser/include)
|
2017-10-26 09:50:15 +02:00
|
|
|
include_directories(../../lib/local/GazeAnalyser/include)
|
2017-12-13 18:50:48 +01:00
|
|
|
include_directories(../../lib/local/Utilities/include)
|
2016-04-28 21:40:36 +02:00
|
|
|
|
|
|
|
add_executable(FaceLandmarkImg FaceLandmarkImg.cpp)
|
|
|
|
target_link_libraries(FaceLandmarkImg LandmarkDetector)
|
|
|
|
target_link_libraries(FaceLandmarkImg FaceAnalyser)
|
2017-10-26 09:50:15 +02:00
|
|
|
target_link_libraries(FaceLandmarkImg GazeAnalyser)
|
2017-12-13 18:50:48 +01:00
|
|
|
target_link_libraries(FaceLandmarkImg Utilities)
|
2016-04-28 21:40:36 +02:00
|
|
|
target_link_libraries(FaceLandmarkImg dlib)
|
|
|
|
|
2017-10-25 08:40:31 +02:00
|
|
|
target_link_libraries(FaceLandmarkImg ${OpenCV_LIBS} ${Boost_LIBRARIES} ${TBB_LIBRARIES} ${BLAS_LIBRARIES})
|
2016-04-28 21:40:36 +02:00
|
|
|
|
2016-08-01 11:34:23 +02:00
|
|
|
install (TARGETS FaceLandmarkImg DESTINATION bin)
|