blob: 12fbca624b318a6a4591f6f3d7da78a44c0c5a30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
# Only build jars during Android build and install the templates for the
# androiddeployqt tool.
# android
if (ANDROID)
add_subdirectory(jar)
add_subdirectory(java)
add_subdirectory(templates)
add_subdirectory(templates_aar)
add_subdirectory(templates_cmake)
endif()
qt_internal_add_java_documentation(Global)
|