OpenBLAS cmake fixes.
This commit is contained in:
parent
790e10fdbd
commit
85a201c508
3 changed files with 7 additions and 1 deletions
|
@ -12,6 +12,6 @@ target_link_libraries(FaceLandmarkImg LandmarkDetector)
|
|||
target_link_libraries(FaceLandmarkImg FaceAnalyser)
|
||||
target_link_libraries(FaceLandmarkImg dlib)
|
||||
|
||||
target_link_libraries(FaceLandmarkImg ${OpenCV_LIBS} ${Boost_LIBRARIES} ${TBB_LIBRARIES})
|
||||
target_link_libraries(FaceLandmarkImg ${OpenCV_LIBS} ${Boost_LIBRARIES} ${TBB_LIBRARIES} ${BLAS_LIBRARIES})
|
||||
|
||||
install (TARGETS FaceLandmarkImg DESTINATION bin)
|
||||
|
|
|
@ -4,6 +4,9 @@ include_directories(${BLAS_ROOT_DIR})
|
|||
|
||||
include_directories(${BOOST_INCLUDE_DIR})
|
||||
|
||||
#OpenBlas library
|
||||
include_directories(../../3rdParty/OpenBLAS/include)
|
||||
|
||||
SET(SOURCE
|
||||
src/Face_utils.cpp
|
||||
src/FaceAnalyser.cpp
|
||||
|
|
|
@ -3,6 +3,9 @@ include_directories(${TBB_ROOT_DIR}/include)
|
|||
|
||||
include_directories(${BOOST_INCLUDE_DIR})
|
||||
|
||||
#OpenBlas library
|
||||
include_directories(../../3rdParty/OpenBLAS/include)
|
||||
|
||||
SET(SOURCE
|
||||
src/CCNF_patch_expert.cpp
|
||||
src/LandmarkDetectionValidator.cpp
|
||||
|
|
Loading…
Reference in a new issue