mirror of
https://github.com/status-im/react-native.git
synced 2025-01-19 14:02:10 +00:00
fd2fb6cd65
Reviewed By: bestander Differential Revision: D4273387 fbshipit-source-id: 91373c6ef1e94b330fa249235ba97fec480e17c7
17 lines
325 B
Makefile
17 lines
325 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := yogacore
|
|
|
|
LOCAL_SRC_FILES := \
|
|
CSSLayout/Yoga.c \
|
|
CSSLayout/YGNodeList.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)
|