mirror of https://github.com/FreeRDP/FreeRDP
Merge branch 'master' of https://github.com/FreeRDP/FreeRDP into android_debug_settings
Conflicts: cmake/ConfigOptionsAndroid.cmake
This commit is contained in:
commit
f4b68b2d02
|
@ -344,7 +344,7 @@ set( ANDROID_SUPPORTED_ABIS_arm "armeabi-v7a;armeabi;armeabi-v7a with NEON;armea
|
|||
set( ANDROID_SUPPORTED_ABIS_x86 "x86" )
|
||||
set( ANDROID_SUPPORTED_ABIS_mipsel "mips" )
|
||||
|
||||
set( ANDROID_DEFAULT_NDK_API_LEVEL 8 )
|
||||
set( ANDROID_DEFAULT_NDK_API_LEVEL 9 )
|
||||
set( ANDROID_DEFAULT_NDK_API_LEVEL_x86 9 )
|
||||
set( ANDROID_DEFAULT_NDK_API_LEVEL_mips 9 )
|
||||
|
||||
|
|
|
@ -28,7 +28,9 @@ find_package_handle_standard_args(OPENSLES DEFAULT_MSG
|
|||
if(OPENSLES_FOUND)
|
||||
set(OPENSLES_LIBRARIES ${OPENSLES_LIBRARY})
|
||||
else(OPENSLES_FOUND)
|
||||
set(OPENSLES_LIBRARIES)
|
||||
if (OpenSLES_FIND_REQUIRED)
|
||||
message(FATAL_ERROR "Could NOT find OPENSLES")
|
||||
endif()
|
||||
endif(OPENSLES_FOUND)
|
||||
|
||||
mark_as_advanced(OPENSLES_INCLUDE_DIR OPENSLES_LIBRARY)
|
||||
|
|
|
@ -18,7 +18,7 @@ Build requirements
|
|||
For the Android port some additional dependencies need to be fulfilled:
|
||||
|
||||
* for JNI
|
||||
- Android NDK (>= r8d)
|
||||
- Android NDK (>= r9)
|
||||
- prebuild static openssl libraries (see below)
|
||||
|
||||
* for the Java GUI (if build with ant)
|
||||
|
|
Loading…
Reference in New Issue