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