summaryrefslogtreecommitdiffhomepage
path: root/tracker-kinect-face
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2020-03-07 07:50:30 +0100
committerStanislaw Halik <sthalik@misaki.pl>2020-03-07 07:50:30 +0100
commitadb5f89b018da33ee7e3aa8a48e5b742129da161 (patch)
tree7c4ac3954cfe33aa1428f6bb9a16fc18da3348e3 /tracker-kinect-face
parenteb2752871e7bfbddab36d7641da6660798072f12 (diff)
cmake: make install prefix path variables more clear
Pointed out by: @rvt
Diffstat (limited to 'tracker-kinect-face')
-rw-r--r--tracker-kinect-face/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/tracker-kinect-face/CMakeLists.txt b/tracker-kinect-face/CMakeLists.txt
index 7ab62df2..0a110e5a 100644
--- a/tracker-kinect-face/CMakeLists.txt
+++ b/tracker-kinect-face/CMakeLists.txt
@@ -30,14 +30,14 @@ if (WIN32 AND opentrack-intel)
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(FILES "${SDK_KINECT20}/Redist/Face/${kinect-arch-dir}/Kinect20.Face.dll" DESTINATION "${opentrack-libexec}" PERMISSIONS ${opentrack-perms-exec})
# Install Kinect Face Database
- install(DIRECTORY "${SDK_KINECT20}/Redist/Face/${kinect-arch-dir}/NuiDatabase" DESTINATION "${opentrack-hier-pfx}")
+ install(DIRECTORY "${SDK_KINECT20}/Redist/Face/${kinect-arch-dir}/NuiDatabase" DESTINATION "${opentrack-libexec}")
set(redist-dir "${CMAKE_SOURCE_DIR}/redist/${kinect-arch-dir}")
install(
FILES "${redist-dir}/msvcp110.dll" "${redist-dir}/msvcr110.dll"
- DESTINATION "${opentrack-hier-pfx}"
+ DESTINATION "${opentrack-libexec}"
PERMISSIONS ${opentrack-perms-exec}
)