From 35a69ce0491525135bda85b810e0030f37971ac5 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 7 Jan 2015 09:48:12 -0800 Subject: [PATCH] remove the faceplus find module --- BUILD.md | 2 +- cmake/modules/FindFaceplus.cmake | 24 ------------------------ interface/src/devices/FaceTracker.h | 2 +- 3 files changed, 2 insertions(+), 26 deletions(-) delete mode 100644 cmake/modules/FindFaceplus.cmake diff --git a/BUILD.md b/BUILD.md index d068d6d458..c86e34823c 100644 --- a/BUILD.md +++ b/BUILD.md @@ -60,5 +60,5 @@ OS X users who tap our [homebrew formulas repository](https://github.com/highfid ####Devices -You can support external input/output devices such as Leap Motion, Faceplus, Faceshift, PrioVR, MIDI, Razr Hydra and more by adding each individual SDK in the visible building path. Refer to the readme file available in each device folder in [interface/external/](interface/external) for the detailed explanation of the requirements to use the device. +You can support external input/output devices such as Leap Motion, Faceshift, PrioVR, MIDI, Razr Hydra and more by adding each individual SDK in the visible building path. Refer to the readme file available in each device folder in [interface/external/](interface/external) for the detailed explanation of the requirements to use the device. diff --git a/cmake/modules/FindFaceplus.cmake b/cmake/modules/FindFaceplus.cmake deleted file mode 100644 index e97fce3edb..0000000000 --- a/cmake/modules/FindFaceplus.cmake +++ /dev/null @@ -1,24 +0,0 @@ -# Try to find the Faceplus library -# -# You must provide a FACEPLUS_ROOT_DIR which contains lib and include directories -# -# Once done this will define -# -# FACEPLUS_FOUND - system found Faceplus -# FACEPLUS_INCLUDE_DIRS - the Faceplus include directory -# FACEPLUS_LIBRARIES - Link this to use Faceplus -# -# Created on 4/8/2014 by Andrzej Kapolka -# Copyright (c) 2014 High Fidelity -# - -find_path(FACEPLUS_INCLUDE_DIRS faceplus.h ${FACEPLUS_ROOT_DIR}/include) - -if (WIN32) - find_library(FACEPLUS_LIBRARIES faceplus.lib ${FACEPLUS_ROOT_DIR}/win32/) -endif (WIN32) - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(Faceplus DEFAULT_MSG FACEPLUS_INCLUDE_DIRS FACEPLUS_LIBRARIES) - -mark_as_advanced(FACEPLUS_INCLUDE_DIRS FACEPLUS_LIBRARIES) \ No newline at end of file diff --git a/interface/src/devices/FaceTracker.h b/interface/src/devices/FaceTracker.h index 75954871e5..7c367b7899 100644 --- a/interface/src/devices/FaceTracker.h +++ b/interface/src/devices/FaceTracker.h @@ -18,7 +18,7 @@ #include #include -/// Base class for face trackers (Faceshift, Visage, Faceplus). +/// Base class for face trackers (Faceshift, Visage). class FaceTracker : public QObject { Q_OBJECT