summaryrefslogtreecommitdiffhomepage
path: root/tracker-kinect-face
diff options
context:
space:
mode:
Diffstat (limited to 'tracker-kinect-face')
-rw-r--r--tracker-kinect-face/CMakeLists.txt49
1 files changed, 8 insertions, 41 deletions
diff --git a/tracker-kinect-face/CMakeLists.txt b/tracker-kinect-face/CMakeLists.txt
index 8eb064e7..5763567d 100644
--- a/tracker-kinect-face/CMakeLists.txt
+++ b/tracker-kinect-face/CMakeLists.txt
@@ -1,44 +1,11 @@
# Kinect SDK is Windows only
-if (WIN32 AND opentrack-intel)
- # Setup cache variable to Kinect SDK path
- set(SDK_KINECT20 "$ENV{KINECTSDK20_DIR}" CACHE PATH "Kinect SDK path")
- # If we have a valid SDK path, try build that tracker
- if(SDK_KINECT20)
- # Register our module
- otr_module(tracker-kinect-face)
+# If we have a valid SDK path, try build that tracker
+if(SDK_KINECT20)
+ # Register our module
+ otr_module(tracker-kinect-face)
+ # Setup Kinect for this module
+ otr_kinect_setup()
+ # Link against video utilities, needed for video preview
+ target_link_libraries(${self} opentrack-video)
- if(MSVC)
- # workaround warning in SDK
- target_compile_options(${self} PRIVATE "-wd4471")
- endif()
-
- # Add include path to Kinect SDK
- target_include_directories(${self} SYSTEM PRIVATE "${SDK_KINECT20}/inc")
-
- # Check processor architecture
- if(opentrack-64bit)
- # 64 bits
- set(kinect-arch-dir "x64")
- else()
- # 32 bits
- set(kinect-arch-dir "x86")
- endif()
-
- # Link against Kinect SDK libraries
- target_link_libraries(${self} "${SDK_KINECT20}/lib/${kinect-arch-dir}/Kinect20.lib" "${SDK_KINECT20}/lib/${kinect-arch-dir}/Kinect20.Face.lib")
- # Link against video utilities, needed for video preview
- target_link_libraries(${self} opentrack-video)
-
- # Install Kinect Face DLL
- install(FILES "${SDK_KINECT20}/Redist/Face/${kinect-arch-dir}/Kinect20.Face.dll" DESTINATION "${opentrack-hier-pfx}" PERMISSIONS ${opentrack-perms-exec})
- # Install Kinect Face Database
- install(DIRECTORY "${SDK_KINECT20}/Redist/Face/${kinect-arch-dir}/NuiDatabase" DESTINATION "${opentrack-hier-pfx}")
-
- set(redist-dir "${CMAKE_SOURCE_DIR}/redist/${kinect-arch-dir}")
- install(
- FILES "${redist-dir}/msvcp110.dll" "${redist-dir}/msvcr110.dll"
- DESTINATION "${opentrack-hier-pfx}"
- PERMISSIONS ${opentrack-perms-exec}
- )
- endif()
endif()