mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00

* update dependencies to current versions * build openh264 with static runtime * use curl for download instead of wget, fall back to wget in case no curl installed.
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=0
|
|
WITH_OPENSSL=1
|
|
WITH_FFMPEG=1
|
|
WITH_AAD=1
|
|
BUILD_DEPS=1
|
|
DEPS_ONLY=0
|
|
NDK_TARGET=21
|
|
WITH_MEDIACODEC=0
|
|
|
|
OPENH264_TAG=v2.5.0
|
|
OPENH264_HASH=94c8ca364db990047ec4ec3481b04ce0d791e62561ef5601443011bdc00825e3
|
|
OPENSSL_TAG=openssl-3.4.0
|
|
OPENSSL_HASH=e15dda82fe2fe8139dc2ac21a36d4ca01d5313c75f99f46c4e8a27709b7294bf
|
|
FFMPEG_TAG=n7.1
|
|
FFMPEG_HASH=7ddad2d992bd250a6c56053c26029f7e728bebf0f37f80cf3f8a0e6ec706431a
|
|
CJSON_TAG=v1.7.18
|
|
CJSON_HASH=3aa806844a03442c00769b83e99970be70fbef03735ff898f4811dd03b9f5ee5
|
|
|
|
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"
|