summaryrefslogtreecommitdiff
path: root/tests_2022.gpr
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-02-03 14:38:29 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-02-03 14:38:29 +1300
commit2bc98da4d5b964de2d0d5e40927aa777704f2f29 (patch)
tree95b47d4e1462e96945a9b9c40e247e361144fa57 /tests_2022.gpr
parente2e976c7f4716034673e5939fa9f60797bf401fd (diff)
More test programs added: button, buttons, clock, color_chooser, cursor, curve, hello
Diffstat (limited to 'tests_2022.gpr')
-rw-r--r--tests_2022.gpr6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests_2022.gpr b/tests_2022.gpr
index 4217c08..84ed425 100644
--- a/tests_2022.gpr
+++ b/tests_2022.gpr
@@ -17,11 +17,13 @@ project Tests_2022 is
for Main use
("animated.adb",
- "arc.adb");
+ "arc.adb",
+ "curve.adb");
package Builder is
for Executable ("animated.adb") use "animated";
- for Executable ("arc.adb") use "arc";
+ for Executable ("arc.adb") use "arc";
+ for Executable ("curve.adb") use "curve";
end Builder;
package Compiler renames Common.Compiler;