7e187eeacd
When running CMake from the build tree the CMAKE_ROOT is the entire source tree. Fix the CMP0017 check to be specific to the Modules/ directory under CMAKE_ROOT so that Tests/ does not count. Fix the FindPackageTest modules to include FPHSA by full path from CMAKE_ROOT so that they do not include the local FPHSA which reports an error meant to test that CMP0017 works.
7 lines
246 B
CMake
7 lines
246 B
CMake
set(UCP_FOO TRUE)
|
|
|
|
include(${CMAKE_ROOT}/Modules/FindPackageHandleStandardArgs.cmake)
|
|
|
|
find_package_handle_standard_args(UpperCasePackage REQUIRED_VARS UCP_FOO
|
|
FOUND_VAR UPPERCASEPACKAGE_FOUND )
|