diff options
-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() |