summaryrefslogtreecommitdiffstats
path: root/src/android/templates/CMakeLists.txt
blob: 8e007b721516f755cd3adb28632a37697271809f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Android template files

# special case skip regeneration
# special case begin
set(template_files
    AndroidManifest.xml
    build.gradle)

set(template_directories
    res)

qt_install(FILES ${template_files}
    DESTINATION src/android/templates
    COMPONENT Devel)

qt_install(DIRECTORY ${template_directories}
    DESTINATION src/android/templates
    COMPONENT Devel)
# special case end