mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
70c359000a
Differential Revision: D6385924 fbshipit-source-id: 1913d903077494cc0d86d5a8c8839620f1ecab0c
19 lines
388 B
Makefile
19 lines
388 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := jsinspector
|
|
|
|
LOCAL_SRC_FILES := \
|
|
InspectorInterfaces.cpp
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/..
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES)
|
|
|
|
LOCAL_CFLAGS += -Wall -Werror -fexceptions
|
|
CXX11_FLAGS := -std=c++11
|
|
LOCAL_CFLAGS += $(CXX11_FLAGS)
|
|
LOCAL_EXPORT_CPPFLAGS := $(CXX11_FLAGS)
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|