mirror of
https://github.com/lubosz/overte.git
synced 2025-04-27 13:55:26 +02:00
Use the ABI-compatible library (hopefully).
This commit is contained in:
parent
0547fa61b4
commit
cc6b663ea6
2 changed files with 3 additions and 2 deletions
interface
|
@ -161,7 +161,7 @@ if (VISAGE_FOUND AND NOT DISABLE_VISAGE)
|
|||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-comment -isystem ${VISAGE_INCLUDE_DIRS}")
|
||||
find_library(AVFoundation AVFoundation)
|
||||
find_library(CoreMedia CoreMedia)
|
||||
find_library(NEW_STD_LIBRARY libc++.dylib /usr/lib/)
|
||||
find_library(NEW_STD_LIBRARY libc++abi.dylib /usr/lib/)
|
||||
target_link_libraries(${TARGET_NAME} ${AVFoundation} ${CoreMedia} ${NEW_STD_LIBRARY})
|
||||
endif (APPLE)
|
||||
target_link_libraries(${TARGET_NAME} ${VISAGE_LIBRARIES})
|
||||
|
|
|
@ -27,7 +27,7 @@ using namespace VisageSDK;
|
|||
Visage::Visage() {
|
||||
#ifdef HAVE_VISAGE
|
||||
switchToResourcesParentIfRequired();
|
||||
initializeLicenseManager("resources/visage");
|
||||
initializeLicenseManager("resources/visage/license.vlc");
|
||||
_tracker = new VisageTracker2("resources/visage/Facial Features Tracker - Asymmetric.cfg");
|
||||
_tracker->trackFromCam();
|
||||
#endif
|
||||
|
@ -35,6 +35,7 @@ Visage::Visage() {
|
|||
|
||||
Visage::~Visage() {
|
||||
#ifdef HAVE_VISAGE
|
||||
_tracker->stop();
|
||||
delete _tracker;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue