2017-07-20 19:35:53 +02:00
|
|
|
enable_language(CXX)
|
2015-04-27 22:25:09 +02:00
|
|
|
|
2018-04-23 21:13:27 +02:00
|
|
|
add_library(lib1-interface INTERFACE IMPORTED)
|
|
|
|
target_compile_features(lib1-interface INTERFACE cxx_delegating_constructors)
|
|
|
|
|
|
|
|
add_library(lib2-interface INTERFACE IMPORTED)
|
|
|
|
target_compile_features(lib2-interface PUBLIC cxx_delegating_constructors)
|
|
|
|
|
|
|
|
add_library(lib-shared SHARED IMPORTED)
|
|
|
|
target_compile_features(lib-shared INTERFACE cxx_delegating_constructors)
|