mirror of
https://github.com/status-im/react-native.git
synced 2025-01-30 19:25:11 +00:00
d7ab9496bc
Reviewed By: gkassabli Differential Revision: D6271299 fbshipit-source-id: 66c0e54ccf019d72d1fd0b4d117826e4e84fdc89
18 lines
342 B
Makefile
18 lines
342 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := yogacore
|
|
|
|
LOCAL_SRC_FILES := \
|
|
yoga/Yoga.cpp \
|
|
yoga/YGEnums.cpp \
|
|
yoga/YGNodeList.cpp
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES)
|
|
|
|
LOCAL_CFLAGS := -Wall -Werror -fexceptions -frtti -std=c++1y -O3
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|