mirror of
https://github.com/Kitware/CMake.git
synced 2026-07-24 16:26:11 +00:00
Add a `--debug-find-pkg=` option to debug find calls for specific packages. Add a `--debug-find-var=` option to debug find calls for specific return variables. Fixes: #21880
14 lines
264 B
CMake
14 lines
264 B
CMake
include(RunCMake)
|
|
|
|
run_cmake(EmptyOldStyle)
|
|
run_cmake(FromPATHEnv)
|
|
run_cmake(PrefixInPATH)
|
|
run_cmake(Required)
|
|
run_cmake(NO_CACHE)
|
|
|
|
if(APPLE)
|
|
run_cmake(FrameworksWithSubdirs)
|
|
endif()
|
|
|
|
run_cmake_with_options(FromPATHEnvDebugVar --debug-find-var=PATH_IN_ENV_PATH)
|