|
5 | 5 | # Android specific functions/macros/properties required for building Qt Modules
|
6 | 6 | #
|
7 | 7 |
|
8 |
| -define_property(TARGET |
9 |
| - PROPERTY |
10 |
| - QT_ANDROID_MODULE_INSTALL_DIR |
11 |
| - BRIEF_DOCS |
12 |
| - "Recorded install location for a Qt Module." |
13 |
| - FULL_DOCS |
14 |
| - "Recorded install location for a Qt Module. Used by qt_internal_android_dependencies()." |
15 |
| -) |
16 |
| - |
17 |
| - |
18 |
| -define_property(TARGET |
19 |
| - PROPERTY |
20 |
| - QT_ANDROID_JAR_DEPENDENCIES |
21 |
| - BRIEF_DOCS |
22 |
| - "Qt Module Jar dependencies list." |
23 |
| - FULL_DOCS |
24 |
| - "Qt Module Jar dependencies list." |
25 |
| -) |
26 |
| - |
27 |
| -define_property(TARGET |
28 |
| - PROPERTY |
29 |
| - QT_ANDROID_BUNDLED_JAR_DEPENDENCIES |
30 |
| - BRIEF_DOCS |
31 |
| - "Qt Module Jars that should be bundled with it during packing." |
32 |
| - FULL_DOCS |
33 |
| - "Qt Module Jars that should be bundled with it during packing." |
34 |
| -) |
35 |
| - |
36 |
| -define_property(TARGET |
37 |
| - PROPERTY |
38 |
| - QT_ANDROID_LIB_DEPENDENCIES |
39 |
| - BRIEF_DOCS |
40 |
| - "Qt Module C++ libraries that should be bundled with it during packing." |
41 |
| - FULL_DOCS |
42 |
| - "Qt Module C++ libraries that should be bundled with it during packing." |
43 |
| -) |
44 |
| - |
45 |
| -define_property(TARGET |
46 |
| - PROPERTY |
47 |
| - QT_ANDROID_LIB_DEPENDENCY_REPLACEMENTS |
48 |
| - BRIEF_DOCS |
49 |
| - "Qt Module C++ libraries that can replace libraries declared with the QT_ANDROID_LIB_DEPENDENCIES property." |
50 |
| - FULL_DOCS |
51 |
| - "Qt Module C++ libraries that can replace libraries declared with the QT_ANDROID_LIB_DEPENDENCIES property." |
52 |
| -) |
53 |
| - |
54 |
| -define_property(TARGET |
55 |
| - PROPERTY |
56 |
| - QT_ANDROID_BUNDLED_FILES |
57 |
| - BRIEF_DOCS |
58 |
| - "Qt Module files that need to be bundled during packing." |
59 |
| - FULL_DOCS |
60 |
| - "Qt Module files that need to be bundled during packing." |
61 |
| -) |
62 |
| - |
63 |
| -define_property(TARGET |
64 |
| - PROPERTY |
65 |
| - QT_ANDROID_PERMISSIONS |
66 |
| - BRIEF_DOCS |
67 |
| - "Qt Module android permission list." |
68 |
| - FULL_DOCS |
69 |
| - "Qt Module android permission list." |
70 |
| -) |
71 |
| - |
72 |
| -define_property(TARGET |
73 |
| - PROPERTY |
74 |
| - QT_ANDROID_FEATURES |
75 |
| - BRIEF_DOCS |
76 |
| - "Qt Module android feature list." |
77 |
| - FULL_DOCS |
78 |
| - "Qt Module android feature list." |
79 |
| -) |
80 |
| - |
81 |
| -define_property(TARGET |
82 |
| - PROPERTY |
83 |
| - QT_ANDROID_ABIS |
84 |
| - BRIEF_DOCS |
85 |
| - "List of ABIs that the target packages are built with." |
86 |
| - FULL_DOCS |
87 |
| - "List of ABIs that the target packages are built with." |
88 |
| -) |
| 8 | +macro(qt_internal_setup_android_target_properties) |
| 9 | + define_property(TARGET |
| 10 | + PROPERTY |
| 11 | + QT_ANDROID_MODULE_INSTALL_DIR |
| 12 | + BRIEF_DOCS |
| 13 | + "Recorded install location for a Qt Module." |
| 14 | + FULL_DOCS |
| 15 | + "Recorded install location for a Qt Module. Used by qt_internal_android_dependencies()." |
| 16 | + ) |
| 17 | + |
| 18 | + define_property(TARGET |
| 19 | + PROPERTY |
| 20 | + QT_ANDROID_JAR_DEPENDENCIES |
| 21 | + BRIEF_DOCS |
| 22 | + "Qt Module Jar dependencies list." |
| 23 | + FULL_DOCS |
| 24 | + "Qt Module Jar dependencies list." |
| 25 | + ) |
| 26 | + |
| 27 | + define_property(TARGET |
| 28 | + PROPERTY |
| 29 | + QT_ANDROID_BUNDLED_JAR_DEPENDENCIES |
| 30 | + BRIEF_DOCS |
| 31 | + "Qt Module Jars that should be bundled with it during packing." |
| 32 | + FULL_DOCS |
| 33 | + "Qt Module Jars that should be bundled with it during packing." |
| 34 | + ) |
| 35 | + |
| 36 | + define_property(TARGET |
| 37 | + PROPERTY |
| 38 | + QT_ANDROID_LIB_DEPENDENCIES |
| 39 | + BRIEF_DOCS |
| 40 | + "Qt Module C++ libraries that should be bundled with it during packing." |
| 41 | + FULL_DOCS |
| 42 | + "Qt Module C++ libraries that should be bundled with it during packing." |
| 43 | + ) |
| 44 | + |
| 45 | + define_property(TARGET |
| 46 | + PROPERTY |
| 47 | + QT_ANDROID_LIB_DEPENDENCY_REPLACEMENTS |
| 48 | + BRIEF_DOCS |
| 49 | + "Qt Module C++ libraries that can replace libraries declared with the QT_ANDROID_LIB_DEPENDENCIES property." |
| 50 | + FULL_DOCS |
| 51 | + "Qt Module C++ libraries that can replace libraries declared with the QT_ANDROID_LIB_DEPENDENCIES property." |
| 52 | + ) |
| 53 | + |
| 54 | + define_property(TARGET |
| 55 | + PROPERTY |
| 56 | + QT_ANDROID_BUNDLED_FILES |
| 57 | + BRIEF_DOCS |
| 58 | + "Qt Module files that need to be bundled during packing." |
| 59 | + FULL_DOCS |
| 60 | + "Qt Module files that need to be bundled during packing." |
| 61 | + ) |
| 62 | + |
| 63 | + define_property(TARGET |
| 64 | + PROPERTY |
| 65 | + QT_ANDROID_PERMISSIONS |
| 66 | + BRIEF_DOCS |
| 67 | + "Qt Module android permission list." |
| 68 | + FULL_DOCS |
| 69 | + "Qt Module android permission list." |
| 70 | + ) |
| 71 | + |
| 72 | + define_property(TARGET |
| 73 | + PROPERTY |
| 74 | + QT_ANDROID_FEATURES |
| 75 | + BRIEF_DOCS |
| 76 | + "Qt Module android feature list." |
| 77 | + FULL_DOCS |
| 78 | + "Qt Module android feature list." |
| 79 | + ) |
| 80 | + |
| 81 | + define_property(TARGET |
| 82 | + PROPERTY |
| 83 | + QT_ANDROID_ABIS |
| 84 | + BRIEF_DOCS |
| 85 | + "List of ABIs that the target packages are built with." |
| 86 | + FULL_DOCS |
| 87 | + "List of ABIs that the target packages are built with." |
| 88 | + ) |
| 89 | +endmacro() |
89 | 90 |
|
90 | 91 | function(qt_internal_android_dependencies_content target file_content_out)
|
91 | 92 | get_target_property(arg_JAR_DEPENDENCIES ${target} QT_ANDROID_JAR_DEPENDENCIES)
|
|
0 commit comments