mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 19:30:13 -06:00
Previously this command was tested only implicitly as part of larger tests. Add a RunCMake.find_program test to cover find_program cases specifically and independently.
7 lines
129 B
CMake
7 lines
129 B
CMake
find_program(PROG
|
|
NAMES testCom
|
|
PATHS ${CMAKE_CURRENT_SOURCE_DIR}/Win
|
|
NO_DEFAULT_PATH
|
|
)
|
|
message(STATUS "PROG='${PROG}'")
|