12 lines
386 B
Makefile
12 lines
386 B
Makefile
|
#
|
||
|
# FlatBuffers Makefile - include this and add $(FLATBUFFERS_CFLAGS) to the build
|
||
|
# configuration as needed
|
||
|
#
|
||
|
|
||
|
FLATBUFFERS_PATH = external/flatbuffers
|
||
|
|
||
|
FLATBUFFERS_CFLAGS := -I$(FLATBUFFERS_PATH)/include
|
||
|
FLATBUFFERS_CFLAGS += -DFLATBUFFERS_CHRE
|
||
|
FLATBUFFERS_CFLAGS += -DFLATBUFFERS_ASSERT=CHRE_ASSERT
|
||
|
FLATBUFFERS_CFLAGS += -DFLATBUFFERS_ASSERT_INCLUDE=\"chre/util/container_support.h\"
|