mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 14:20:06 -06:00
When a dependency was already found, find_dependency did not search it again. While this works in basic case, it does not when there are components as the check does not take components into account. Given the fact that there is no documentation about this optimization and that the correct implementation is not trivial as it would require changes in find_package to have the list of components already found we always search dependencies. Fix #17583.
8 lines
289 B
CMake
8 lines
289 B
CMake
include(CMakeFindDependencyMacro)
|
|
|
|
find_dependency(Pack7 REQUIRED COMPONENTS Comp1)
|
|
|
|
add_library(Pack8::Lib INTERFACE IMPORTED)
|
|
set_property(TARGET Pack8::Lib PROPERTY INTERFACE_COMPILE_DEFINITIONS HAVE_PACK8)
|
|
set_property(TARGET Pack8::Lib PROPERTY INTERFACE_LINK_LIBRARIES Pack7::Comp1)
|