mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-29 07:21:49 +00:00
4597b03873
Opens in Android Studio but haven't even tried to build it yet (it won't.. I know that much!)
17 lines
346 B
Makefile
17 lines
346 B
Makefile
|
|
LOCAL_PATH := $(call my-dir)/../
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := sigc
|
|
|
|
LOCAL_CPPFLAGS := -fexceptions
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
|
|
|
LOCAL_SRC_FILES := sigc++/connection.cpp sigc++/signal.cpp sigc++/signal_base.cpp sigc++/trackable.cpp sigc++/functors/slot_base.cpp
|
|
|
|
LOCAL_LDLIBS := -llog
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|
|
|