Don't force installation prefix on android

0.8
Bruno Van de Velde 2018-11-07 20:26:28 +01:00
parent b0bac2bebb
commit 7eb70f3c5d
1 changed files with 4 additions and 2 deletions

View File

@ -136,8 +136,10 @@ if(TGUI_OS_ANDROID)
message(WARNING "CMake might not properly support setting the STL. Make sure to adjust all generated library projects!") message(WARNING "CMake might not properly support setting the STL. Make sure to adjust all generated library projects!")
endif() endif()
# Install everything in $NDK/sources/ because this path is appended by the NDK (convenient) # Install everything in $NDK/sources/third_party by default
set(CMAKE_INSTALL_PREFIX ${CMAKE_ANDROID_NDK}/sources/third_party/tgui) if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set(CMAKE_INSTALL_PREFIX ${CMAKE_ANDROID_NDK}/sources/third_party/tgui CACHE PATH "Installation path (should be inside your NDK's 'sources' directory)" FORCE)
endif()
# We install libs in a subdirectory named after the ABI (e.g. lib/armeabi/libtgui.so) # We install libs in a subdirectory named after the ABI (e.g. lib/armeabi/libtgui.so)
set(LIB_SUFFIX "/${CMAKE_ANDROID_ARCH_ABI}") set(LIB_SUFFIX "/${CMAKE_ANDROID_ARCH_ABI}")