2016-07-11 20:15:44 +00:00
|
|
|
#TBB library
|
|
|
|
include_directories(${TBB_ROOT_DIR}/include)
|
|
|
|
|
2016-04-28 19:40:36 +00:00
|
|
|
include_directories(${BOOST_INCLUDE_DIR})
|
|
|
|
|
2017-10-25 06:40:31 +00:00
|
|
|
#OpenBlas library
|
|
|
|
include_directories(../../3rdParty/OpenBLAS/include)
|
|
|
|
|
2016-04-28 19:40:36 +00:00
|
|
|
SET(SOURCE
|
|
|
|
src/CCNF_patch_expert.cpp
|
|
|
|
src/LandmarkDetectionValidator.cpp
|
|
|
|
src/LandmarkDetectorFunc.cpp
|
|
|
|
src/LandmarkDetectorModel.cpp
|
|
|
|
src/LandmarkDetectorUtils.cpp
|
|
|
|
src/LandmarkDetectorParameters.cpp
|
|
|
|
src/Patch_experts.cpp
|
|
|
|
src/PAW.cpp
|
|
|
|
src/PDM.cpp
|
|
|
|
src/SVR_patch_expert.cpp
|
|
|
|
src/stdafx.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(HEADERS
|
|
|
|
include/CCNF_patch_expert.h
|
|
|
|
include/LandmarkCoreIncludes.h
|
|
|
|
include/LandmarkDetectionValidator.h
|
|
|
|
include/LandmarkDetectorFunc.h
|
|
|
|
include/LandmarkDetectorModel.h
|
|
|
|
include/LandmarkDetectorParameters.h
|
|
|
|
include/LandmarkDetectorUtils.h
|
|
|
|
include/Patch_experts.h
|
|
|
|
include/PAW.h
|
|
|
|
include/PDM.h
|
|
|
|
include/SVR_patch_expert.h
|
|
|
|
include/stdafx.h
|
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(./include)
|
|
|
|
include_directories(${LandmarkDetector_SOURCE_DIR}/include)
|
|
|
|
|
2016-12-29 23:36:10 +00:00
|
|
|
add_library( LandmarkDetector ${SOURCE} ${HEADERS} )
|
2016-04-28 19:40:36 +00:00
|
|
|
|
2016-12-18 00:00:41 +00:00
|
|
|
install (TARGETS LandmarkDetector DESTINATION lib)
|
|
|
|
install (FILES ${HEADERS} DESTINATION include/OpenFace)
|