summaryrefslogtreecommitdiff
path: root/examples.gpr
diff options
context:
space:
mode:
Diffstat (limited to 'examples.gpr')
-rw-r--r--examples.gpr7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples.gpr b/examples.gpr
index 1921d31..9e1d531 100644
--- a/examples.gpr
+++ b/examples.gpr
@@ -12,16 +12,17 @@ project Examples is
for Source_Dirs use ("example/**");
for Object_Dir use "obj";
for Exec_Dir use "bin";
- for Main use ("sentence.adb");
+ for Main use ("sentence.adb", "ssss.adb");
package Builder is
- for Executable("sentence.adb") use "sentence";
+ for Executable ("sentence.adb") use "sentence";
+ for Executable ("ssss.adb") use "ssss";
end Builder;
package Compiler is
- for Default_Switches("Ada") use ("-gnaty4aAbcefhiklM100nprt");
+ for Default_Switches ("Ada") use ("-gnaty4aAbcefhiklM100nprt");
end Compiler;