blob: 9b2e2136e431ccc1213495210f56b25aa8cd1ef9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
set(properties
# property expected alias
# Linking properties
## Platforms
### AIX
"AIX_EXPORT_ALL_SYMBOLS" "OFF" "<SAME>"
### Windows
"WINDOWS_EXPORT_ALL_SYMBOLS" "OFF" "<SAME>"
)
prepare_target_types(symbol_export_target
EXECUTABLE SHARED
IMPORTED_EXECUTABLE IMPORTED_SHARED)
run_property_tests(symbol_export_target properties)
# `ENABLE_EXPORTS` has a more complicated initialization.
set(properties
# property expected alias
# Linking properties
"ENABLE_EXPORTS" "OFF" "<SAME>"
)
prepare_target_types(executable
EXECUTABLE
IMPORTED_EXECUTABLE)
set(iteration "-ENABLE_EXPORTS")
run_property_tests(executable_target properties)
set(with_defaults 1)
set(CMAKE_SHARED_LIBRARY_ENABLE_EXPORTS OFF)
set(properties
# property expected alias
# Linking properties
"ENABLE_EXPORTS" "OFF" "<SAME>"
)
set(iteration "-SHARED_LIBRARY_ENABLE_EXPORTS")
run_property_tests(shared_library_target properties)
unset(CMAKE_SHARED_LIBRARY_ENABLE_EXPORTS)
set(CMAKE_EXECUTABLE_ENABLE_EXPORTS OFF)
set(properties
# property expected alias
# Linking properties
"ENABLE_EXPORTS" "OFF" "<SAME>"
)
set(iteration "-EXECUTABLE_ENABLE_EXPORTS")
run_property_tests(executable_target properties)
unset(CMAKE_EXECUTABLE_ENABLE_EXPORTS)
|