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

# 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