2016-07-09 20:54:11 +00:00
|
|
|
#APP_ABI := all
|
2016-07-10 01:42:42 +00:00
|
|
|
#APP_ABI := armeabi-v7a x86
|
|
|
|
#APP_ABI := x86
|
|
|
|
APP_ABI := armeabi-v7a
|
2016-07-09 20:54:11 +00:00
|
|
|
#can be android-3 but will fail for x86 since arch-x86 is not present at ndkroot/platforms/android-3/ . libz is taken from there.
|
|
|
|
APP_PLATFORM := android-9
|
|
|
|
|
|
|
|
# http://stackoverflow.com/a/21386866/529442 http://stackoverflow.com/a/15616255/529442 to enable c++11 support in Eclipse
|
|
|
|
NDK_TOOLCHAIN_VERSION := 4.9
|
|
|
|
# APP_STL := stlport_shared --> does not seem to contain C++11 features
|
|
|
|
APP_STL := gnustl_shared
|
|
|
|
|
|
|
|
# Enable c++11 extentions in source code
|
|
|
|
APP_CPPFLAGS += -std=c++11
|
|
|
|
|
2016-07-10 01:42:42 +00:00
|
|
|
APP_CPPFLAGS += -DANDROID -D__ANDROID__ -DUSE_UPNP
|
2016-07-09 20:54:11 +00:00
|
|
|
ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
|
|
|
|
APP_CPPFLAGS += -DANDROID_ARM7A
|
|
|
|
endif
|
|
|
|
|
|
|
|
APP_OPTIM := debug
|
|
|
|
|
|
|
|
# git clone https://github.com/PurpleI2P/Boost-for-Android-Prebuilt.git
|
|
|
|
# git clone https://github.com/PurpleI2P/OpenSSL-for-Android-Prebuilt.git
|
|
|
|
# git clone https://github.com/PurpleI2P/MiniUPnP-for-Android-Prebuilt.git
|
|
|
|
# git clone https://github.com/PurpleI2P/android-ifaddrs.git
|
|
|
|
# change to your own
|
|
|
|
I2PD_LIBS_PATH=/path/to/libraries
|
|
|
|
BOOST_PATH = $(I2PD_LIBS_PATH)/Boost-for-Android-Prebuilt
|
|
|
|
OPENSSL_PATH = $(I2PD_LIBS_PATH)/OpenSSL-for-Android-Prebuilt
|
|
|
|
MINIUPNP_PATH = $(I2PD_LIBS_PATH)/MiniUPnP-for-Android-Prebuilt
|
|
|
|
IFADDRS_PATH = $(I2PD_LIBS_PATH)/android-ifaddrs
|