summaryrefslogtreecommitdiffhomepage
path: root/cmake/opentrack-boilerplate.cmake
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-06-25 19:07:55 +0200
committerStanislaw Halik <sthalik@misaki.pl>2019-06-25 19:07:55 +0200
commitdd99fa49655e20809baed17bc2da977b19c3b12c (patch)
tree7aa88fb8d85e8ebbaae897770151e7fe5db871f7 /cmake/opentrack-boilerplate.cmake
parent45b4a12413a33e3eb1543fcef5eca238bab31446 (diff)
cmake: fix install prefix harder
Diffstat (limited to 'cmake/opentrack-boilerplate.cmake')
-rw-r--r--cmake/opentrack-boilerplate.cmake10
1 files changed, 7 insertions, 3 deletions
diff --git a/cmake/opentrack-boilerplate.cmake b/cmake/opentrack-boilerplate.cmake
index d76df9e4..554b1add 100644
--- a/cmake/opentrack-boilerplate.cmake
+++ b/cmake/opentrack-boilerplate.cmake
@@ -216,10 +216,14 @@ function(otr_module n_)
endif()
if(NOT arg_NO-INSTALL)
- if(arg_BIN AND WIN32)
- install(TARGETS "${n}" RUNTIME DESTINATION ${opentrack-hier-bin} PERMISSIONS ${opentrack-perms-exec})
+ if(arg_BIN)
+ install(TARGETS "${n}"
+ RUNTIME DESTINATION ${opentrack-hier-bin}
+ LIBRARY DESTINATION ${opentrack-hier-pfx}
+ PERMISSIONS ${opentrack-perms-exec})
else()
- install(TARGETS "${n}" ${opentrack-hier-str} PERMISSIONS ${opentrack-perms-exec})
+ install(TARGETS "${n}" ${opentrack-hier-str}
+ PERMISSIONS ${opentrack-perms-exec})
endif()
if(MSVC)