From: vsr Date: Mon, 10 Feb 2014 14:42:43 +0000 (+0400) Subject: Set proper permissions for the scripts X-Git-Tag: V1_0_0~5 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=fbccd15b635b3795a3965684c1b32c0547eccac4;hp=10a5134de7882785eb123f5830c3d7b557689440;p=tools%2Fsimanio.git Set proper permissions for the scripts --- diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt index dd9f69f..0586463 100644 --- a/scripts/CMakeLists.txt +++ b/scripts/CMakeLists.txt @@ -17,7 +17,7 @@ # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com # -# [ files to be installed ] +# [ scripts to be installed ] FILE(GLOB _install_FILES "${CMAKE_CURRENT_SOURCE_DIR}/*.sh") - -INSTALL(FILES ${_install_FILES} DESTINATION share/simanio/misc) +SET(_perms OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) +INSTALL(FILES ${_install_FILES} DESTINATION share/simanio/misc PERMISSIONS ${_perms})