38 lines
957 B
CMake
38 lines
957 B
CMake
|
include_directories(${BOOST_INCLUDE_DIR})
|
||
|
|
||
|
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)
|
||
|
|
||
|
add_library( LandmarkDetector ${SOURCE} ${HEADERS})
|
||
|
|
||
|
install (TARGETS LandmarkDetector DESTINATION bin)
|
||
|
install (FILES HEADERS DESTINATION include)
|