summaryrefslogtreecommitdiff
path: root/examples.gpr
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2020-12-17 14:33:49 +1100
committerJed Barber <jjbarber@y7mail.com>2020-12-17 14:33:49 +1100
commit286eec82878639a13102542d5e37ae9f9acdb0ca (patch)
treedfb6a61e709d4099fac5d469a573305716604d57 /examples.gpr
parent59418dafe0abc2b1ef2c251602397e1adbba5e77 (diff)
Simplified calculator example with only addition and subtraction of integers
Diffstat (limited to 'examples.gpr')
-rw-r--r--examples.gpr3
1 files changed, 2 insertions, 1 deletions
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;