aboutsummaryrefslogtreecommitdiff
path: root/tests.gpr
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2026-02-08 22:00:52 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2026-02-08 22:00:52 +1300
commit32eea08483afb754c7da5663f33cd022d4a2723c (patch)
tree14932da66f123e1a0aa89f0ba3013f13b4a0866c /tests.gpr
parent0b9e8a567265584f8ad5f321a38cf1f183875693 (diff)
Iterative deepening depth first search as a complete (?) search method
Diffstat (limited to 'tests.gpr')
-rw-r--r--tests.gpr26
1 files changed, 14 insertions, 12 deletions
diff --git a/tests.gpr b/tests.gpr
index 8dc84f9..d580429 100644
--- a/tests.gpr
+++ b/tests.gpr
@@ -19,6 +19,7 @@ project Tests is
("ab.adb",
"addsubo.adb",
"boolnum.adb",
+ "complete.adb",
"divo.adb",
"expo.adb",
"fivesix.adb",
@@ -30,18 +31,19 @@ project Tests is
"trees.adb");
package Builder is
- for Executable ("ab.adb") use "ab";
- for Executable ("addsubo.adb") use "addsubo";
- for Executable ("boolnum.adb") use "boolnum";
- for Executable ("divo.adb") use "divo";
- for Executable ("expo.adb") use "expo";
- for Executable ("fivesix.adb") use "fivesix";
- for Executable ("logo.adb") use "logo";
- for Executable ("membero.adb") use "membero";
- for Executable ("multo.adb") use "multo";
- for Executable ("pprint.adb") use "pprint";
- for Executable ("rembero.adb") use "rembero";
- for Executable ("trees.adb") use "trees";
+ for Executable ("ab.adb") use "ab";
+ for Executable ("addsubo.adb") use "addsubo";
+ for Executable ("boolnum.adb") use "boolnum";
+ for Executable ("complete.adb") use "complete";
+ for Executable ("divo.adb") use "divo";
+ for Executable ("expo.adb") use "expo";
+ for Executable ("fivesix.adb") use "fivesix";
+ for Executable ("logo.adb") use "logo";
+ for Executable ("membero.adb") use "membero";
+ for Executable ("multo.adb") use "multo";
+ for Executable ("pprint.adb") use "pprint";
+ for Executable ("rembero.adb") use "rembero";
+ for Executable ("trees.adb") use "trees";
for Default_Switches ("Ada") use
Common.Builder'Default_Switches ("Ada");