From 508e2ca78bc531ace4e383b8ca501cc9997d4073 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Fri, 24 Jan 2025 13:58:34 +1300 Subject: Fixed framerate bug in animated test, used Ada2022 aggregates in animated/arc tests, other slight test improvements --- tests.gpr | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'tests.gpr') diff --git a/tests.gpr b/tests.gpr index 4670aa0..6137d80 100644 --- a/tests.gpr +++ b/tests.gpr @@ -2,7 +2,8 @@ with - "fltkada"; + "fltkada", + "proj/common"; project Tests is @@ -16,8 +17,6 @@ project Tests is for Main use ("adjuster.adb", - "animated.adb", - "arc.adb", "ask.adb", "bitmap.adb", "compare.adb", @@ -26,8 +25,6 @@ project Tests is package Builder is for Executable ("adjuster.adb") use "adjuster"; - for Executable ("animated.adb") use "animated"; - for Executable ("arc.adb") use "arc"; for Executable ("ask.adb") use "ask"; for Executable ("bitmap.adb") use "bitmap"; for Executable ("compare.adb") use "compare"; @@ -35,9 +32,7 @@ project Tests is for Executable ("page_formats.adb") use "page_formats"; end Builder; - package Compiler is - for Default_Switches ("Ada") use ("-gnaty4aAbcefhiklM100nprt"); - end Compiler; + package Compiler renames Common.Compiler; end Tests; -- cgit