diff --git a/exe/FaceLandmarkImg/CMakeLists.txt b/exe/FaceLandmarkImg/CMakeLists.txt index 9df24400..8ea140ab 100644 --- a/exe/FaceLandmarkImg/CMakeLists.txt +++ b/exe/FaceLandmarkImg/CMakeLists.txt @@ -1,3 +1,6 @@ +#TBB library +include_directories(${TBB_ROOT_DIR}/include) + # Local libraries include_directories(${LandmarkDetector_SOURCE_DIR}/include) diff --git a/exe/FaceLandmarkVid/CMakeLists.txt b/exe/FaceLandmarkVid/CMakeLists.txt index 7274ddef..6755fa1e 100644 --- a/exe/FaceLandmarkVid/CMakeLists.txt +++ b/exe/FaceLandmarkVid/CMakeLists.txt @@ -1,3 +1,6 @@ +#TBB library +include_directories(${TBB_ROOT_DIR}/include) + add_executable(FaceLandmarkVid FaceLandmarkVid.cpp) # Local libraries diff --git a/exe/FaceLandmarkVidMulti/CMakeLists.txt b/exe/FaceLandmarkVidMulti/CMakeLists.txt index 161b33be..7dabc9d7 100644 --- a/exe/FaceLandmarkVidMulti/CMakeLists.txt +++ b/exe/FaceLandmarkVidMulti/CMakeLists.txt @@ -1,3 +1,6 @@ +#TBB library +include_directories(${TBB_ROOT_DIR}/include) + # Local libraries include_directories(${LandmarkDetector_SOURCE_DIR}/include) diff --git a/exe/FeatureExtraction/CMakeLists.txt b/exe/FeatureExtraction/CMakeLists.txt index 5839c04f..3c561493 100644 --- a/exe/FeatureExtraction/CMakeLists.txt +++ b/exe/FeatureExtraction/CMakeLists.txt @@ -1,3 +1,6 @@ +#TBB library +include_directories(${TBB_ROOT_DIR}/include) + add_executable(FeatureExtraction FeatureExtraction.cpp) # Local libraries diff --git a/lib/local/FaceAnalyser/CMakeLists.txt b/lib/local/FaceAnalyser/CMakeLists.txt index c08888fc..f0081e7f 100644 --- a/lib/local/FaceAnalyser/CMakeLists.txt +++ b/lib/local/FaceAnalyser/CMakeLists.txt @@ -1,3 +1,6 @@ +#TBB library +include_directories(${TBB_ROOT_DIR}/include) + include_directories(${BOOST_INCLUDE_DIR}) SET(SOURCE diff --git a/lib/local/LandmarkDetector/CMakeLists.txt b/lib/local/LandmarkDetector/CMakeLists.txt index 16b84531..1c28678b 100644 --- a/lib/local/LandmarkDetector/CMakeLists.txt +++ b/lib/local/LandmarkDetector/CMakeLists.txt @@ -1,3 +1,6 @@ +#TBB library +include_directories(${TBB_ROOT_DIR}/include) + include_directories(${BOOST_INCLUDE_DIR}) SET(SOURCE @@ -35,4 +38,4 @@ include_directories(${LandmarkDetector_SOURCE_DIR}/include) add_library( LandmarkDetector ${SOURCE} ${HEADERS}) install (TARGETS LandmarkDetector DESTINATION bin) -install (FILES HEADERS DESTINATION include) \ No newline at end of file +install (FILES HEADERS DESTINATION include)