mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
371 B
Makefile
15 lines
371 B
Makefile
INCLUDES += -I$(PKGDIRBASE)/flatbuffers/include
|
|
|
|
FLATC ?= flatc
|
|
|
|
ifneq (0,$(shell which flatc 2>&1 > /dev/null ; echo $$?))
|
|
FLATC = $(RIOTTOOLS)/flatc/flatc
|
|
$(call target-export-variables,all,FLATC)
|
|
endif
|
|
|
|
# This module requires cpp11 support
|
|
CXXEXFLAGS += -std=c++11
|
|
|
|
# This package is a header only package, so there's nothing to build
|
|
PSEUDOMODULES += flatbuffers
|