diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-21 19:34:32 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-21 22:14:51 +0200 |
commit | 5972037c63ac12e8c9ffed84f842347756b82917 (patch) | |
tree | 9d4c3f66181f217c1304edc7b1191eb86ca05691 | |
parent | 3f2e805f8d444322a893a4ab7743adac8f7b94bc (diff) |
cmake: set executable permissions
-rw-r--r-- | cmake/opentrack-boilerplate.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/opentrack-boilerplate.cmake b/cmake/opentrack-boilerplate.cmake index 5a93b4e8..b0d58aab 100644 --- a/cmake/opentrack-boilerplate.cmake +++ b/cmake/opentrack-boilerplate.cmake @@ -275,10 +275,10 @@ function(otr_install_lib target dest) set(pdb-path "") otr_pdb_for_dll(pdb-path "${path}") if(pdb-path) - install(FILES "${pdb-path}" DESTINATION "${opentrack-hier-debug}") + install(FILES "${pdb-path}" DESTINATION "${opentrack-hier-debug}" PERMISSIONS ${opentrack-perms-exec}) endif() endif() - install(FILES "${path}" DESTINATION "${dest}") + install(FILES "${path}" DESTINATION "${dest}" PERMISSIONS ${opentrack-perms-exec}) endif() endif() endfunction() |