summaryrefslogtreecommitdiff
path: root/examples.gpr
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2021-01-19 13:26:02 +1100
committerJed Barber <jjbarber@y7mail.com>2021-01-19 13:26:02 +1100
commitcd1cd96162314e69ad75d0ac62ac1021c0bcf08f (patch)
treec77d40c97a27015c693cd4e2668d4eb5888cc13f /examples.gpr
parentce3d96238d0b5068a0abfb8d056e2993048f8637 (diff)
Removed simple_calc from examples.gpr
Diffstat (limited to 'examples.gpr')
-rw-r--r--examples.gpr3
1 files changed, 1 insertions, 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;