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 52
|
#
# Copyright 2017-2020 Kai Pastor
#
# This file is part of OpenOrienteering.
#
# OpenOrienteering is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OpenOrienteering is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenOrienteering. If not, see <http://www.gnu.org/licenses/>.
# This qmake project file is to create a configuration for androiddeployqt.
!android:error("This project is for Android only.")
TEMPLATE = app
TARGET = Mapper
ANDROID_VERSION_CODE = "@Mapper_VERSION_CODE@"
ANDROID_VERSION_NAME = "@Mapper_VERSION_DISPLAY@"
ANDROID_MIN_SDK_VERSION = "@ANDROID_MIN_SDK_VERSION@"
ANDROID_TARGET_SDK_VERSION = "@ANDROID_TARGET_SDK_VERSION@"
ANDROID_PACKAGE_SOURCE_DIR = "@ANDROID_PACKAGE_SOURCE_DIR@"
CMAKE_COMMAND = "@CMAKE_COMMAND@"
PROJECT_BINARY_DIR = "@PROJECT_BINARY_DIR@"
# We use resources from some external packages, so lets cleanup the staging dir
# in CPackConfig.cmake when a package version changes.
CPACK_CONFIG_CLEANUP_TRIGGER = \
GDAL: @GDAL_VERSION@ \
PROJ: @PROJ_VERSION@ \
Qt5: @Qt5Core_VERSION@
# For the generated .pro file to be used in Qt Creator,
# we must install everything and replace the dummy libMapper.so.
INSTALLS += everything
everything.path = /
everything.extra = \
"$$CMAKE_COMMAND" --build "$$PROJECT_BINARY_DIR" -- -j$$QMAKE_HOST.cpu_count && \
"$$CMAKE_COMMAND" -E chdir "$$PROJECT_BINARY_DIR" \
"$$CMAKE_COMMAND" "-DCMAKE_INSTALL_PREFIX=$$ANDROID_PACKAGE_SOURCE_DIR" -P cmake_install.cmake
|