0
0
mirror of https://github.com/schwabe/ics-openvpn.git synced 2024-09-20 03:52:27 +02:00

Add short command path when building on Windows

This commit is contained in:
Anton Vaytulevich 2017-06-29 18:18:29 +07:00 committed by Arne Schwabe
parent 3967b8a53d
commit 39d936d4d6
3 changed files with 6 additions and 3 deletions

View File

@ -7,7 +7,6 @@ JNI_DIR := $(call my-dir)
# Build openvpn with mbedTLS (OpenVPN3 core is always build with mbedTLS)
#USE_BREAKPAD=0
include lzo/Android.mk
include openssl/Android.mk

View File

@ -1,3 +1,7 @@
ifeq ($(USE_SHORT_COMMANDS),1)
APP_SHORT_COMMANDS := true
endif
APP_ABI := arm64-v8a armeabi armeabi-v7a x86 x86_64
APP_PLATFORM := android-14

View File

@ -41,9 +41,9 @@ if not exist openvpn\.git (
)
if [%1] == [] (
ndk-build -j 8 USE_BREAKPAD=0
ndk-build USE_SHORT_COMMANDS=1 -j 8 USE_BREAKPAD=0
) else (
ndk-build %*
ndk-build USE_SHORT_COMMANDS=1 %*
)
if not errorlevel 0 goto error