From db51d7f61bc9419fa05767bc1260dfffd0b1bb6b Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Sat, 11 May 2024 22:24:41 +0200 Subject: [PATCH] Set the correct permissions for sfrx, sftx, and foxchk on Linux and macOS. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0b5b5b8b8..a262f3edb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1673,6 +1673,7 @@ if (UNIX) lib/superfox/linux/sftx lib/superfox/linux/foxchk DESTINATION ${CMAKE_INSTALL_BINDIR} + PERMISSIONS WORLD_READ WORLD_WRITE WORLD_EXECUTE #COMPONENT runtime ) endif (UNIX) @@ -1683,6 +1684,7 @@ if (APPLE) lib/superfox/mac/sftx lib/superfox/mac/foxchk DESTINATION ${CMAKE_INSTALL_BINDIR} + PERMISSIONS WORLD_READ WORLD_WRITE WORLD_EXECUTE #COMPONENT runtime ) endif (APPLE)