You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
386 B
12 lines
386 B
4 months ago
|
#
|
||
|
# 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\"
|