mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
This adds a `CMAKE_FIND_REQUIRED` variable which causes `find_package`, `find_path`, `find_file`, `find_library` and `find_program` to be considered `REQUIRED` by default. It also introduces an `OPTIONAL` keyword to those commands, allowing them to ignore the value of this variable. Issue: #26576
14 lines
219 B
CMake
14 lines
219 B
CMake
set(CMAKE_FIND_REQUIRED ON)
|
|
find_program(PROG_AandB_Optional
|
|
NAMES testAandB
|
|
OPTIONAL
|
|
)
|
|
find_program(PROG_AandB_OptionalRequired
|
|
NAMES testAandB
|
|
OPTIONAL
|
|
REQUIRED
|
|
)
|
|
find_program(PROG_AandB
|
|
NAMES testAandB
|
|
)
|