37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
#!/bin/bash
|
|
#
|
|
# Android build configuration
|
|
#
|
|
# 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 separate configurations for each NDK API level
|
|
# and architecture you want to support.
|
|
WITH_OPENH264=1
|
|
WITH_OPENSSL=1
|
|
WITH_FFMPEG=1
|
|
WITH_AAD=1
|
|
BUILD_DEPS=1
|
|
DEPS_ONLY=0
|
|
NDK_TARGET=23
|
|
WITH_MEDIACODEC=0
|
|
|
|
OPENH264_TAG=v2.6.0
|
|
OPENH264_HASH=558544ad358283a7ab2930d69a9ceddf913f4a51ee9bf1bfb9e377322af81a69
|
|
OPENSSL_TAG=openssl-3.5.3
|
|
OPENSSL_HASH=c9489d2abcf943cdc8329a57092331c598a402938054dc3a22218aea8a8ec3bf
|
|
FFMPEG_TAG=n7.1.2
|
|
FFMPEG_HASH=8cb1bb8cfa9aeae13279b4da42ae8307ae6777456d4270f2e603c95aa08ca8ef
|
|
CJSON_TAG=v1.7.19
|
|
CJSON_HASH=7fa616e3046edfa7a28a32d5f9eacfd23f92900fe1f8ccd988c1662f30454562
|
|
|
|
SRC_DIR=$SCRIPT_PATH/..
|
|
BUILD_DST=$SCRIPT_PATH/../client/Android/Studio/freeRDPCore/src/main/jniLibs
|
|
BUILD_SRC=$SRC_DIR/build
|
|
|
|
CMAKE_BUILD_TYPE=Release
|
|
|
|
BUILD_ARCH="armeabi-v7a x86 arm64-v8a x86_64"
|