From 840c6f8538dd2d7906db220a4d60f3597d86e091 Mon Sep 17 00:00:00 2001 From: Aetias Date: Tue, 30 Apr 2024 17:49:24 +0200 Subject: [PATCH] Add C++ includes to `m2ctx` --- tools/m2ctx.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/m2ctx.py b/tools/m2ctx.py index 71562c0a..b48e2e54 100755 --- a/tools/m2ctx.py +++ b/tools/m2ctx.py @@ -9,7 +9,8 @@ from pathlib import Path CXX_FLAGS = [ '-nostdinc', '-Iinclude', - '-Ilibs/c/include' + '-Ilibs/c/include', + '-Ilibs/cpp/include' ] script_dir = Path(os.path.dirname(os.path.realpath(__file__)))