mirror of
https://github.com/albfan/miraclecast.git
synced 2025-02-14 19:02:07 +00:00
CMake: correctly set file permissions
When building using CMake, the display would not appear because the files did not have execute permissions.
This commit is contained in:
parent
3f800251a9
commit
b6400aa14a
1 changed files with 5 additions and 1 deletions
|
@ -1,7 +1,11 @@
|
|||
|
||||
########### install files ###############
|
||||
|
||||
install(FILES miracle-gst gstplayer uibc-viewer DESTINATION bin)
|
||||
install(
|
||||
FILES miracle-gst gstplayer uibc-viewer
|
||||
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_WRITE GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
|
||||
DESTINATION bin
|
||||
)
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue