-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtada.gpr
More file actions
26 lines (21 loc) · 758 Bytes
/
Copy pathtada.gpr
File metadata and controls
26 lines (21 loc) · 758 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
with "tada_config.gpr";
with "tada_deps.gpr";
project Tada is
for Source_Dirs use ("src");
for Object_Dir use "target/" & Tada_Config.Build_Profile & "/obj";
for Exec_Dir use "target/" & Tada_Config.Build_Profile & "/bin";
for Main use ("tada-main.adb");
package Binder is
for Default_Switches ("Ada") use Tada_Config.Binder_Switches;
end Binder;
package Builder is
for Executable ("tada-main.adb") use "tada";
for Default_Switches ("Ada") use Tada_Config.Builder_Switches;
end Builder;
package Compiler is
for Default_Switches ("Ada") use Tada_Config.Compiler_Switches;
end Compiler;
package Linker is
for Default_Switches ("Ada") use Tada_Config.Linker_Switches;
end Linker;
end Tada;