From 9057820fbc2c761a37f5e805aa767ea476e8ebb2 Mon Sep 17 00:00:00 2001 From: Stephanie Gawroriski Date: Fri, 6 Nov 2020 21:21:35 -0500 Subject: [PATCH] Make sure our include flags are included when compiling C++ code. --- libretroBuildSystem/build/Makefile.common | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libretroBuildSystem/build/Makefile.common b/libretroBuildSystem/build/Makefile.common index 0f78cad..ce0d75d 100644 --- a/libretroBuildSystem/build/Makefile.common +++ b/libretroBuildSystem/build/Makefile.common @@ -123,3 +123,6 @@ ifneq ($(STATIC_LINKING), 1) $(LIBRETRO_COMM_DIR)/string/stdstring.c \ $(LIBRETRO_COMM_DIR)/vfs/vfs_implementation.c endif + +# Make sure C++ shares our include flags! +CXXFLAGS += $(INCFLAGS)