mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-05-16 12:17:57 +00:00
54 lines
1.3 KiB
CMake
54 lines
1.3 KiB
CMake
#TBB library
|
|
include_directories(${TBB_ROOT_DIR}/include)
|
|
|
|
include_directories(${BOOST_INCLUDE_DIR})
|
|
|
|
#OpenBlas library
|
|
include_directories(../../3rdParty/OpenBLAS/include)
|
|
|
|
#Utilities library
|
|
include_directories(../../local/Utilities/include)
|
|
|
|
SET(SOURCE
|
|
src/CCNF_patch_expert.cpp
|
|
src/CEN_patch_expert.cpp
|
|
src/CNN_utils.cpp
|
|
src/FaceDetectorMTCNN.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/CEN_patch_expert.h
|
|
include/CNN_utils.h
|
|
include/FaceDetectorMTCNN.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)
|
|
|
|
add_library( LandmarkDetector ${SOURCE} ${HEADERS} )
|
|
|
|
install (TARGETS LandmarkDetector DESTINATION lib)
|
|
install (FILES ${HEADERS} DESTINATION include/OpenFace)
|