1
0
Fork 0
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:
Tony Y 2016-08-16 17:09:39 -07:00
parent 3f800251a9
commit b6400aa14a

View file

@ -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
)