2ff19597dc
cache dependancies so we are not hitting github often update android dependancies to latest and compile. ./android-build-freerdp.sh --ndk ~/Programming/android-ndk-r15c --relWithDebug --jpeg Still an error compiling openh264
30 lines
742 B
Bash
30 lines
742 B
Bash
#!/bin/bash
|
|
#
|
|
# Android build confguration
|
|
#
|
|
# 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
|
|
WITH_OPENSSL=1
|
|
BUILD_DEPS=1
|
|
DEPS_ONLY=0
|
|
NDK_TARGET=14
|
|
|
|
JPEG_TAG=master
|
|
OPENH264_TAG=v1.7.0
|
|
OPENSSL_TAG=OpenSSL_1_1_0h
|
|
|
|
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"
|