From 286eec82878639a13102542d5e37ae9f9acdb0ca Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 17 Dec 2020 14:33:49 +1100 Subject: Simplified calculator example with only addition and subtraction of integers --- examples.gpr | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples.gpr') diff --git a/examples.gpr b/examples.gpr index 2f63bc2..c113750 100644 --- a/examples.gpr +++ b/examples.gpr @@ -12,13 +12,14 @@ 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"); + for Main use ("sentence.adb", "ssss.adb", "calc.adb", "simple_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