mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-02 09:21:44 +08:00
Reviewed By: emilsjolander Differential Revision: D4182345 fbshipit-source-id: 05cb4f0b0e7971d4f66e656ea89d876264a61bd4
17 lines
332 B
Makefile
17 lines
332 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
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|