From cd1cd96162314e69ad75d0ac62ac1021c0bcf08f Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Tue, 19 Jan 2021 13:26:02 +1100 Subject: Removed simple_calc from examples.gpr --- examples.gpr | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples.gpr b/examples.gpr index c113750..2f63bc2 100644 --- a/examples.gpr +++ b/examples.gpr @@ -12,14 +12,13 @@ project Examples is for Source_Dirs use ("example/**"); for Object_Dir use "obj"; for Exec_Dir use "bin"; - for Main use ("sentence.adb", "ssss.adb", "calc.adb", "simple_calc.adb"); + for Main use ("sentence.adb", "ssss.adb", "calc.adb"); package Builder is for Executable ("sentence.adb") use "sentence"; for Executable ("ssss.adb") use "ssss"; for Executable ("calc.adb") use "calc"; - for Executable ("simple_calc.adb") use "simplecalc"; end Builder; -- cgit