From a1c42d1e1049cd7fa98be1bcae52e7b37fe5a2ee Mon Sep 17 00:00:00 2001 From: Rod Kay Date: Sun, 31 Dec 2023 21:11:01 +1100 Subject: [PATCH] lace_shared: Add 'for Global_Configuration_Pragmas use "debug.pra";' to Builder, without which opengl code breaks. --- 0-floor/lace_shared/lace_shared.gpr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/0-floor/lace_shared/lace_shared.gpr b/0-floor/lace_shared/lace_shared.gpr index 0e9a9f6..9e1a0a7 100644 --- a/0-floor/lace_shared/lace_shared.gpr +++ b/0-floor/lace_shared/lace_shared.gpr @@ -148,7 +148,7 @@ is is when "debug" => for Global_Configuration_Pragmas use "debug.pra"; for Default_Switches ("ada") use ("-C", "-j0", "-gnat2022"); -- TODO: Create and use a Builder_Options variable ? - when "fast" => -- for Global_Configuration_Pragmas use "debug.pra"; -- TODO: Without this, openGL fails. Investigate. + when "fast" => for Global_Configuration_Pragmas use "debug.pra"; -- TODO: Without this, openGL fails. Investigate. for Default_Switches ("ada") use ("-C", "-j0", "-gnat2022"); when "small" => null; end case;