27a0ec9b9a
It seems there is a configure test which should enable it.
This reverts commit 7e4f0ad961
.
Change-Id: I39c594e5e779732d2f5954b42e266a1eaa1be3f0
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
19 lines
589 B
Plaintext
19 lines
589 B
Plaintext
# qmake configuration for building with android-g++
|
|
MAKEFILE_GENERATOR = UNIX
|
|
QMAKE_PLATFORM = android
|
|
QMAKE_COMPILER = gcc
|
|
|
|
CONFIG += android_install unversioned_soname unversioned_libname android_deployment_settings
|
|
|
|
include(../common/linux.conf)
|
|
include(../common/gcc-base-unix.conf)
|
|
include(../common/android-base-head.conf)
|
|
|
|
QMAKE_CC = $$NDK_TOOLCHAIN_PATH/bin/$$NDK_TOOLS_PREFIX-gcc
|
|
QMAKE_CXX = $$QMAKE_GCC
|
|
|
|
QMAKE_CFLAGS =
|
|
QMAKE_LINK = $$QMAKE_GCC
|
|
|
|
include(../common/android-base-tail.conf)
|