-
Notifications
You must be signed in to change notification settings - Fork 1
/
ahven.gpr
34 lines (27 loc) · 1.18 KB
/
ahven.gpr
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
with "aida";
project Ahven is
for Source_Dirs use ("src/ahven");
for Object_Dir use "obj";
for Exec_Dir use "bin";
package Builder is
for Default_Switches ("ada") use ("-j4");
end Builder;
package Compiler is
for Default_Switches ("ada") use (--"-gnaty",
"-gnat12",
"-g",
"-gnatf", -- Full, verbose error messages
"-gnatwa", -- All optional warnings
"-gnatVa", -- All validity checks
"-gnatwe", -- Treat warnings as errors
"-gnata", -- Enable assertions
"-Wall" -- All GCC warnings
);
end Compiler;
package Linker is
for Default_Switches ("ada") use ("-g");
end Linker;
package Binder is
for Default_Switches ("ada") use ("-E");
end Binder;
end Ahven;