fdbfc9f677
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 testExe
|
|
PATHS ${CMAKE_CURRENT_SOURCE_DIR}/Win
|
|
NO_DEFAULT_PATH
|
|
)
|
|
message(STATUS "PROG='${PROG}'")
|