mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03: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}'")
|