Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabi Melman <gmelman1@gmail.com>2019-05-19 17:58:44 +0300
committerGitHub <noreply@github.com>2019-05-19 17:58:44 +0300
commitc264c3e2dddf7c98885094001cde80b9e3588292 (patch)
treebebbc2bc4063edbe8e68b98d4a47c706d2c7c6b3 /example
parentd21bcd2f876a0e310889e37551130c2b07a687fc (diff)
Delete Android.mk
Diffstat (limited to 'example')
-rw-r--r--example/jni/Android.mk15
1 files changed, 0 insertions, 15 deletions
diff --git a/example/jni/Android.mk b/example/jni/Android.mk
deleted file mode 100644
index 7accbad3..00000000
--- a/example/jni/Android.mk
+++ /dev/null
@@ -1,15 +0,0 @@
-# Setup a project
-LOCAL_PATH := $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := example
-LOCAL_SRC_FILES := example.cpp
-LOCAL_CPPFLAGS += -Wall -Wshadow -Wextra -pedantic -std=c++11 -fPIE -pie
-LOCAL_LDFLAGS += -fPIE -pie
-
-# Add exception support and set path for spdlog's headers
-LOCAL_CPPFLAGS += -fexceptions -I../include
-# Use android's log library
-LOCAL_LDFLAGS += -llog
-
-include $(BUILD_EXECUTABLE)