2017-10-26 07:50:15 +00:00
|
|
|
#TBB library
|
|
|
|
include_directories(${TBB_ROOT_DIR}/include)
|
|
|
|
include_directories(${BLAS_ROOT_DIR})
|
|
|
|
|
|
|
|
include_directories(${BOOST_INCLUDE_DIR})
|
|
|
|
|
|
|
|
#OpenBlas library
|
|
|
|
include_directories(../../3rdParty/OpenBLAS/include)
|
|
|
|
|
|
|
|
#LandmarkDetector library
|
|
|
|
include_directories(../../local/LandmarkDetector/include)
|
|
|
|
|
2017-12-17 08:49:12 +00:00
|
|
|
#Utilities library
|
|
|
|
include_directories(../../local/Utilities/include)
|
|
|
|
|
2017-10-26 07:50:15 +00:00
|
|
|
SET(SOURCE
|
|
|
|
src/GazeEstimation.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(HEADERS
|
|
|
|
include/GazeEstimation.h
|
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(./include)
|
|
|
|
include_directories(${GAZEANALYSER_SOURCE_DIR}/include)
|
|
|
|
|
|
|
|
add_library( GazeAnalyser ${SOURCE} ${HEADERS})
|
|
|
|
|
|
|
|
install (TARGETS GazeAnalyser DESTINATION lib)
|
|
|
|
install (FILES ${HEADERS} DESTINATION include/OpenFace)
|