mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2025-12-30 04:52:29 +00:00
10 lines
405 B
CMake
10 lines
405 B
CMake
# Local libraries
|
|
include_directories(${LandmarkDetector_SOURCE_DIR}/include)
|
|
|
|
add_executable(FeatureExtraction FeatureExtraction.cpp)
|
|
target_link_libraries(FeatureExtraction LandmarkDetector)
|
|
target_link_libraries(FeatureExtraction FaceAnalyser)
|
|
target_link_libraries(FeatureExtraction GazeAnalyser)
|
|
target_link_libraries(FeatureExtraction Utilities)
|
|
|
|
install (TARGETS FeatureExtraction DESTINATION bin) |