diff options
author | NeroBurner <pyro4hell@gmail.com> | 2021-06-21 21:51:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-21 20:51:42 +0100 |
commit | a7143c2a8c48b234d78ec666193b942ae0b62ca3 (patch) | |
tree | c6ba5317ba853536d25709f80aadc4036c14dfd3 /build/android/native/jni/Application.mk | |
parent | 7fdbf3f231976257a1c246c6ebcdbc5bb8fa5571 (diff) | |
download | minetest-a7143c2a8c48b234d78ec666193b942ae0b62ca3.tar.gz minetest-a7143c2a8c48b234d78ec666193b942ae0b62ca3.tar.bz2 minetest-a7143c2a8c48b234d78ec666193b942ae0b62ca3.zip |
Move build/android directory to root of project (#11283)
Diffstat (limited to 'build/android/native/jni/Application.mk')
-rw-r--r-- | build/android/native/jni/Application.mk | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/build/android/native/jni/Application.mk b/build/android/native/jni/Application.mk deleted file mode 100644 index 82f0148f0..000000000 --- a/build/android/native/jni/Application.mk +++ /dev/null @@ -1,32 +0,0 @@ -APP_PLATFORM := ${APP_PLATFORM} -APP_ABI := ${TARGET_ABI} -APP_STL := c++_shared -NDK_TOOLCHAIN_VERSION := clang -APP_SHORT_COMMANDS := true -APP_MODULES := Minetest - -APP_CPPFLAGS := -Ofast -fvisibility=hidden -fexceptions -Wno-deprecated-declarations -Wno-extra-tokens - -ifeq ($(APP_ABI),armeabi-v7a) -APP_CPPFLAGS += -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -endif - -#ifeq ($(APP_ABI),x86) -#APP_CPPFLAGS += -march=i686 -mtune=intel -mssse3 -mfpmath=sse -m32 -funroll-loops -#endif - -ifndef NDEBUG -APP_CPPFLAGS := -g -D_DEBUG -O0 -fno-omit-frame-pointer -fexceptions -endif - -APP_CFLAGS := $(APP_CPPFLAGS) -Wno-parentheses-equality #-Werror=shorten-64-to-32 -APP_CXXFLAGS := $(APP_CPPFLAGS) -frtti -std=gnu++17 -APP_LDFLAGS := -Wl,--no-warn-mismatch,--gc-sections,--icf=safe - -ifeq ($(APP_ABI),arm64-v8a) -APP_LDFLAGS := -Wl,--no-warn-mismatch,--gc-sections -endif - -ifndef NDEBUG -APP_LDFLAGS := -endif |