summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;