mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
67e54f8bdb
Summary: Attempt to fix CircleCI build by adding YGEnums to the yoga gradle file Closes https://github.com/facebook/react-native/pull/13296 Differential Revision: D4827856 Pulled By: ericvicenti fbshipit-source-id: cb03af77919c811d06352fbe0b77084e97d2e6c1
18 lines
334 B
Makefile
18 lines
334 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := yogacore
|
|
|
|
LOCAL_SRC_FILES := \
|
|
yoga/Yoga.c \
|
|
yoga/YGEnums.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)
|