diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-08-14 19:39:05 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-08-14 19:39:05 +0200 |
commit | f2236891202f70b3b964b851ba98890fd7ca7a91 (patch) | |
tree | 7ee222358da431874f98992ba62d24d1b964789e /tracker-rs | |
parent | 40e1fdd1331f93f2e69c01f3acf901fead48f143 (diff) |
cmake: drop executable bit from installed normal files
Diffstat (limited to 'tracker-rs')
-rw-r--r-- | tracker-rs/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tracker-rs/CMakeLists.txt b/tracker-rs/CMakeLists.txt index e0e4d674..fc8eb75b 100644 --- a/tracker-rs/CMakeLists.txt +++ b/tracker-rs/CMakeLists.txt @@ -5,8 +5,8 @@ if(WIN32 AND SDK_REALSENSE) add_definitions(-fpermissive -Wno-error) # for SDK headers endif() otr_module(tracker-rs) - install(FILES "${CMAKE_SOURCE_DIR}/tracker-rs/redist/intel_rs_sdk_runtime_websetup_10.0.26.0396.exe" DESTINATION ${opentrack-contrib-pfx} ${opentrack-perms}) - install(FILES "${CMAKE_SOURCE_DIR}/tracker-rs/redist/RS_EULA.rtf" DESTINATION ${opentrack-contrib-pfx} ${opentrack-perms}) + install(FILES "${CMAKE_SOURCE_DIR}/tracker-rs/redist/intel_rs_sdk_runtime_websetup_10.0.26.0396.exe" DESTINATION ${opentrack-contrib-pfx} PERMISSIONS ${opentrack-perms-exec}) + install(FILES "${CMAKE_SOURCE_DIR}/tracker-rs/redist/RS_EULA.rtf" DESTINATION ${opentrack-contrib-pfx} PERMISSIONS ${opentrack-perms-file}) add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/rs_impl") target_link_libraries(opentrack-tracker-rs opentrack-tracker-rs-impl) endif() |