summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/alias_targets/duplicate-target.cmake
blob: f81921b716c34e7974012028bc6806f05033937c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

add_library (foo1 INTERFACE)
add_library (foo2 INTERFACE)

add_library (imp1 SHARED IMPORTED GLOBAL)
add_library (imp2 SHARED IMPORTED GLOBAL)


add_library (alias1 ALIAS foo1)
# same alias to different library
add_library (alias1 ALIAS foo2)
# same alias to different imported library
add_library (alias1 ALIAS imp1)


add_library (alias2 ALIAS imp1)
# same alias to different imported library
add_library (alias2 ALIAS imp2)
# same alias to different library
add_library (alias2 ALIAS foo1)