mirror of
https://github.com/status-im/react-native.git
synced 2025-01-15 20:15:11 +00:00
c04ab92192
Summary: This is how we compile internally Reviewed By: emilsjolander Differential Revision: D4182691 fbshipit-source-id: 314b1a1ead7d299677ce7f71549c986e1b796b3b
17 lines
336 B
Makefile
17 lines
336 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := csslayoutcore
|
|
|
|
LOCAL_SRC_FILES := \
|
|
CSSLayout/CSSLayout.c \
|
|
CSSLayout/CSSNodeList.c
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES)
|
|
|
|
LOCAL_CFLAGS := -Wall -Werror -fexceptions -frtti -std=c99 -O3
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|