diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-02-11 19:37:39 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-02-11 20:21:35 +0100 |
commit | 5d6cccb406e4aa4fe3e8430690296e5f59474e48 (patch) | |
tree | 95f568223248a55f567b90e016b7fcb6f2dd2247 /tracker-kinect-face/CMakeLists.txt | |
parent | 665cd55bcf8996bfc0b83604fa75bf80f9aaa3bd (diff) |
cmake: reindent
Diffstat (limited to 'tracker-kinect-face/CMakeLists.txt')
-rw-r--r-- | tracker-kinect-face/CMakeLists.txt | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/tracker-kinect-face/CMakeLists.txt b/tracker-kinect-face/CMakeLists.txt index 9cfede4d..92ed00c1 100644 --- a/tracker-kinect-face/CMakeLists.txt +++ b/tracker-kinect-face/CMakeLists.txt @@ -1,44 +1,44 @@ # Kinect SDK is Windows only if (WIN32 AND opentrack-intel) - if(TRUE) - # 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) + # 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(MSVC) - # workaround warning in SDK - target_compile_options(${self} PRIVATE "-wd4471") - endif() + 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") + # Add include path to Kinect SDK + target_include_directories(${self} SYSTEM PRIVATE "${SDK_KINECT20}/inc") - # Check processor architecture - if(NOT opentrack-64bit) - # 32 bits - set(kinect-arch-dir "x86") - else() - # 64 bits - set(kinect-arch-dir "x64") - endif() + # Check processor architecture + if(NOT opentrack-64bit) + # 32 bits + set(kinect-arch-dir "x86") + else() + # 64 bits + set(kinect-arch-dir "x64") + 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 OpenCV stuff, needed for video preview - target_link_libraries(${self} opentrack-video) + # 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 OpenCV stuff, 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}") + # 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() + 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() |