diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-02-03 14:38:29 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-02-03 14:38:29 +1300 |
commit | 2bc98da4d5b964de2d0d5e40927aa777704f2f29 (patch) | |
tree | 95b47d4e1462e96945a9b9c40e247e361144fa57 /tests.gpr | |
parent | e2e976c7f4716034673e5939fa9f60797bf401fd (diff) |
More test programs added: button, buttons, clock, color_chooser, cursor, curve, hello
Diffstat (limited to 'tests.gpr')
-rw-r--r-- | tests.gpr | 26 |
1 files changed, 19 insertions, 7 deletions
@@ -19,19 +19,31 @@ project Tests is ("adjuster.adb", "ask.adb", "bitmap.adb", + "button.adb", + "buttons.adb", "compare.adb", + "clock.adb", + "color_chooser.adb", + "cursor.adb", "dirlist.adb", + "hello.adb", "page_formats.adb", "pixmap.adb"); package Builder is - for Executable ("adjuster.adb") use "adjuster"; - for Executable ("ask.adb") use "ask"; - for Executable ("bitmap.adb") use "bitmap"; - for Executable ("compare.adb") use "compare"; - for Executable ("dirlist.adb") use "dirlist"; - for Executable ("page_formats.adb") use "page_formats"; - for Executable ("pixmap.adb") use "pixmap"; + for Executable ("adjuster.adb") use "adjuster"; + for Executable ("ask.adb") use "ask"; + for Executable ("bitmap.adb") use "bitmap"; + for Executable ("button.adb") use "button"; + for Executable ("buttons.adb") use "buttons"; + for Executable ("compare.adb") use "compare"; + for Executable ("clock.adb") use "clock"; + for Executable ("color_chooser.adb") use "color_chooser"; + for Executable ("cursor.adb") use "cursor"; + for Executable ("dirlist.adb") use "dirlist"; + for Executable ("hello.adb") use "hello"; + for Executable ("page_formats.adb") use "page_formats"; + for Executable ("pixmap.adb") use "pixmap"; end Builder; package Compiler renames Common.Compiler; |