blob: 8b01433cfd74256646f96e5d0ec8dac105f22514 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
with
"kompsos",
"proj/common";
project Tests is
for Languages use ("Ada");
for Source_Dirs use ("test");
for Object_Dir use "obj";
for Exec_Dir use "bin";
for Main use
("ab.adb",
"addsubo.adb",
"divo.adb",
"expo.adb",
"fivesix.adb",
"logo.adb",
"membero.adb",
"multo.adb",
"pprint.adb",
"rembero.adb",
"trees.adb");
package Builder is
for Executable ("ab.adb") use "ab";
for Executable ("addsubo.adb") use "addsubo";
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");
for Global_Compilation_Switches ("Ada") use
Common.Builder'Global_Compilation_Switches ("Ada");
end Builder;
package Compiler renames Common.Compiler;
package Binder renames Common.Binder;
package Linker renames Common.Linker;
end Tests;
|