summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/find_program/NamesPerDir.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-09-01 20:25:57 (GMT)
committerBrad King <brad.king@kitware.com>2015-09-02 14:17:22 (GMT)
commit8ea7611bc3650c75c86d22a3127cb117dbcaa9be (patch)
treee04eb16f45d1b9fc463ae82c4b0184ea04fabca1 /Tests/RunCMake/find_program/NamesPerDir.cmake
parentfc1990c93384d1d2122cd4e11398a8197b006504 (diff)
downloadCMake-8ea7611bc3650c75c86d22a3127cb117dbcaa9be.zip
CMake-8ea7611bc3650c75c86d22a3127cb117dbcaa9be.tar.gz
CMake-8ea7611bc3650c75c86d22a3127cb117dbcaa9be.tar.bz2
find_program: Optionally consider all names in each directory
When more than one value is given to the NAMES option this command by default will consider one name at a time and search every directory for it. Add a NAMES_PER_DIR option to tell this command to consider one directory at a time and search for all names in it.
Diffstat (limited to 'Tests/RunCMake/find_program/NamesPerDir.cmake')
-rw-r--r--Tests/RunCMake/find_program/NamesPerDir.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/RunCMake/find_program/NamesPerDir.cmake b/Tests/RunCMake/find_program/NamesPerDir.cmake
new file mode 100644
index 0000000..49ce49d
--- /dev/null
+++ b/Tests/RunCMake/find_program/NamesPerDir.cmake
@@ -0,0 +1,6 @@
+find_program(PROG
+ NAMES testB testA NAMES_PER_DIR
+ PATHS ${CMAKE_CURRENT_SOURCE_DIR}/A ${CMAKE_CURRENT_SOURCE_DIR}/B
+ NO_DEFAULT_PATH
+ )
+message(STATUS "PROG='${PROG}'")