mirror of
https://github.com/reactos/CMake.git
synced 2025-01-11 22:17:44 +00:00
7bb1abe56a
In the new mode FPHSA now accepts a FOUND_VAR option, which can be set either to ExactCase_FOUND or UPPERCASE_FOUND, no other values are accepted. Also add tests for that, including failure. Alex
7 lines
218 B
CMake
7 lines
218 B
CMake
set(UCP_FOO TRUE)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(UpperCasePackage REQUIRED_VARS UCP_FOO
|
|
FOUND_VAR UPPERCASEPACKAGE_FOUND )
|