forked from opengisch/OSGeo4A
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.conf.default
35 lines (29 loc) · 999 Bytes
/
config.conf.default
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
### Currently suggested versions ####
export ANDROIDNDKVER=r19
export ANDROIDAPI=21 # min 15 max 21
#### PATHS ####
export ANDROIDSDK="/path/to/android-sdk"
export ANDROIDNDK="/path/to/android-ndk"
export QT_ANDROID_BASE="/path/to/qt/sdk/Qt/5.11.2"
# For example:
# export ANDROIDSDK="/opt/android/sdk"
# export ANDROIDNDK="/opt/android-ndk-r19b/"
# export QT_ANDROID_BASE="/opt/Qt/5.11.2"
# QGIS needs a bison 3. On MacOS you may need
# to install one with e.g. homebrew and add
# it to the path
# export PATH="/usr/local/opt/bison/bin:$PATH"
### LOCAL SOURCES ###
# To use local sourcecode instead of the configured URL:
# export O4A_[module]_DIR=/usr/src/mymodulesource like this
# export O4A_qgis_DIR="/path/to/repository/qgis/QGIS"
### BUILD ###
# Available architectures:
# - armeabi-v7a
# - x86
# - arm64-v8a (experimental)
export ARCHES=("armeabi-v7a" "x86")
#export ARCHES=("armeabi-v7a")
# By default all cores will be used to build
# Use this option to override
# export CORES=4