mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 21:58:50 -05:00
42f7e39789
Fixes #23359
18 lines
482 B
CMake
18 lines
482 B
CMake
|
|
find_package(Bar QUIET CONFIG NO_CMAKE_INSTALL_PREFIX)
|
|
if(Bar_FOUND)
|
|
message(SEND_ERROR "Bar should not be found, was found in ${Bar_DIR}")
|
|
endif()
|
|
|
|
set(CMAKE_FIND_USE_INSTALL_PREFIX OFF)
|
|
find_package(Bar QUIET CONFIG)
|
|
if(Bar_FOUND)
|
|
message(SEND_ERROR "Bar should not be found, was found in ${Bar_DIR}")
|
|
endif()
|
|
|
|
set(CMAKE_FIND_USE_INSTALL_PREFIX ON)
|
|
find_package(Bar QUIET CONFIG)
|
|
if(NOT Bar_FOUND)
|
|
message(SEND_ERROR "Bar should be found via CMAKE_INSTALL_PREFIX")
|
|
endif()
|