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.
9 lines
374 B
9 lines
374 B
7 years ago
|
add_library(ImportedSubdirTarget1 SHARED IMPORTED GLOBAL)
|
||
|
add_library(ImportedSubdirTarget2 SHARED IMPORTED)
|
||
|
|
||
|
# Extend visibility of ImportedSubdirTarget2 to global scope.
|
||
|
set_property(TARGET ImportedSubdirTarget2 PROPERTY IMPORTED_GLOBAL TRUE)
|
||
|
|
||
|
# Only targets from the same directory can be promoted.
|
||
|
set_property(TARGET ImportedLocalTarget2 PROPERTY IMPORTED_GLOBAL TRUE)
|