You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
357 B
10 lines
357 B
10 years ago
|
|
||
|
include(CMakeFindDependencyMacro)
|
||
|
|
||
|
find_dependency(Pack5 3.1) # Actual version is 3.3. EXACT not propagated.
|
||
|
find_dependency(Pack6 5.5 EXACT)
|
||
|
|
||
|
add_library(Pack4::Lib INTERFACE IMPORTED)
|
||
|
set_property(TARGET Pack4::Lib PROPERTY INTERFACE_COMPILE_DEFINITIONS HAVE_PACK4)
|
||
|
set_property(TARGET Pack4::Lib PROPERTY INTERFACE_LINK_LIBRARIES Pack5::Lib Pack6::Lib)
|