-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadg.gpr
More file actions
32 lines (25 loc) · 780 Bytes
/
Copy pathadg.gpr
File metadata and controls
32 lines (25 loc) · 780 Bytes
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
with "config/adg_config.gpr";
project Adg is
for Languages use ("C", "Ada");
for Source_Dirs use ("src/", "config/");
for Object_Dir use "obj/" & Adg_Config.Build_Profile;
for Create_Missing_Dirs use "True";
for Exec_Dir use "bin";
for Main use ("adg.adb");
package Compiler is
for Default_Switches ("Ada") use
Adg_Config.Ada_Compiler_Switches & ("-gnatwe");
end Compiler;
package Binder is
for Switches ("Ada") use ("-Es"); -- Symbolic traceback
end Binder;
package Linker is
for Default_Switches ("Ada") use ("-lcrypt");
end Linker;
package Install is
for Artifacts (".") use ("share");
end Install;
package Prove is
for Proof_Switches ("Ada") use ("--level=2");
end Prove;
end Adg;