1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

makefiles/vars.inc.mk: export CXXINCLUDES

It is used by Makefile.base so should be exported globally even if only
defined by `llvm.inc.mk` for the moment.
This commit is contained in:
cladmi 2018-10-15 21:00:20 +02:00
parent 7fde6fc258
commit 089265f4aa
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -12,6 +12,7 @@ export CPU # The CPU, set by the board's Makefile.include.
export CPU_MODEL # The specific identifier of the used CPU, used for some CPU implementations to differentiate between different memory layouts
export MCU # The MCU, set by the board's Makefile.include, or defaulted to the same value as CPU.
export INCLUDES # The extra include paths, set by the various Makefile.include files.
export CXXINCLUDES # The extra include paths for c++, set by the various Makefile.include files.
export USEMODULE # Sys Module dependencies of the application. Set in the application's Makefile.
export USEPKG # Pkg dependencies (third party modules) of the application. Set in the application's Makefile.