Merge commit 'a4163d8b1b2f6c012c0e1d26f90815879a743aa8' as 'vendor/spdlog'
This commit is contained in:
15
vendor/spdlog/example/jni/Android.mk
vendored
Normal file
15
vendor/spdlog/example/jni/Android.mk
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
# 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)
|
2
vendor/spdlog/example/jni/Application.mk
vendored
Normal file
2
vendor/spdlog/example/jni/Application.mk
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
# Exceptions are used in spdlog. Link to an exception-ready C++ runtime.
|
||||
APP_STL = gnustl_static
|
1
vendor/spdlog/example/jni/example.cpp
vendored
Symbolic link
1
vendor/spdlog/example/jni/example.cpp
vendored
Symbolic link
@ -0,0 +1 @@
|
||||
../example.cpp
|
Reference in New Issue
Block a user