From 731d0188577bc2796cbedf4baf40884abc1f21f9 Mon Sep 17 00:00:00 2001 From: Maxwell Jeffress Date: Wed, 15 Apr 2026 15:03:29 +1000 Subject: [PATCH] Fix building without Tram --- src/compiler.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/compiler.h b/src/compiler.h index 2530d2c..adb49b8 100644 --- a/src/compiler.h +++ b/src/compiler.h @@ -1,5 +1,9 @@ #include "types.h" +#ifdef GROUND_COMPILE_WITH_TRAM #include +#endif void compileGroundProgram(GroundProgram* program, char* name); +#ifdef GROUND_COMPILE_WITH_TRAM void compileGroundInstruction(GroundInstruction* instruction, Tram_Program* program); +#endif