mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
7f8c2985a8
Reviewed By: gkassabli Differential Revision: D4284681 fbshipit-source-id: f0c6855c2c6e4389b7867f48f72cbb697830fc5a
17 lines
315 B
Makefile
17 lines
315 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := yogacore
|
|
|
|
LOCAL_SRC_FILES := \
|
|
yoga/Yoga.c \
|
|
yoga/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)
|