summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/find_program/ExeNoRead.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/find_program/ExeNoRead.cmake')
-rw-r--r--Tests/RunCMake/find_program/ExeNoRead.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/RunCMake/find_program/ExeNoRead.cmake b/Tests/RunCMake/find_program/ExeNoRead.cmake
new file mode 100644
index 0000000..7e22dc5
--- /dev/null
+++ b/Tests/RunCMake/find_program/ExeNoRead.cmake
@@ -0,0 +1,4 @@
+file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/ExeNoRead" "#!/bin/sh\n")
+execute_process(COMMAND chmod -r+x "${CMAKE_CURRENT_BINARY_DIR}/ExeNoRead")
+find_program(ExeNoRead_EXECUTABLE NAMES ExeNoRead NO_DEFAULT_PATH PATHS "${CMAKE_CURRENT_BINARY_DIR}")
+message(STATUS "ExeNoRead_EXECUTABLE='${ExeNoRead_EXECUTABLE}'")