FreeRDP/scripts/android-build.conf

33 lines
796 B
Plaintext
Raw Normal View History

2016-02-01 17:22:10 +03:00
#!/bin/bash
#
# Android build confguration
2016-06-03 10:39:48 +03:00
#
# Note: This is a simple configuration to build all
# architectures in one rush.
# Since android 64 bit support was introduced with NDK API 21
# this is the minimal common denominator.
# If you require support for older NDK API levels,
# create seperate configurations for each NDK API level
# and architecture you want to support.
WITH_JPEG=0
WITH_OPENH264=0
2016-02-01 17:22:10 +03:00
WITH_OPENSSL=1
WITH_FFMPEG=0
2016-02-01 17:22:10 +03:00
BUILD_DEPS=1
DEPS_ONLY=0
2022-02-24 12:54:19 +03:00
NDK_TARGET=21
WITH_MEDIACODEC=1
2016-02-01 17:22:10 +03:00
JPEG_TAG=master
2022-05-13 10:54:54 +03:00
OPENH264_TAG=v2.2.0
OPENSSL_TAG=openssl-1.1.1o
FFMPEG_TAG=n4.4.1
2016-02-01 17:22:10 +03:00
SRC_DIR=$SCRIPT_PATH/..
2022-02-18 10:49:56 +03:00
BUILD_DST=$SCRIPT_PATH/../client/Android/Studio/freeRDPCore/src/main/jniLibs
2016-02-01 17:22:10 +03:00
BUILD_SRC=$SRC_DIR/build
CMAKE_BUILD_TYPE=Debug
BUILD_ARCH="armeabi-v7a arm64-v8a"