diff options
Diffstat (limited to 'tests.gpr')
-rw-r--r-- | tests.gpr | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -10,13 +10,16 @@ project Tests is for Languages use ("Ada"); - for Source_Dirs use ("test/**"); + for Source_Dirs use ("test"); for Object_Dir use "obj"; for Exec_Dir use "bin"; for Main use ("adjuster.adb", "animated.adb", + "arc.adb", + "ask.adb", + "bitmap.adb", "compare.adb", "dirlist.adb", "page_formats.adb"); @@ -24,6 +27,9 @@ 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"; for Executable ("dirlist.adb") use "dirlist"; for Executable ("page_formats.adb") use "page_formats"; |