blob: 63e596862186ff24973a41bd68b4d7db8861633a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
with "config/adachip_config.gpr";
project Ada_Chip is
for Source_Dirs use ("src/", "config/");
for Object_Dir use "obj/" & Adachip_Config.Build_Profile;
for Create_Missing_Dirs use "True";
for Exec_Dir use "bin";
for Main use ("ada_chip.adb");
package Compiler is
for Default_Switches ("Ada") use Adachip_Config.Ada_Compiler_Switches;
end Compiler;
package Binder is
for Switches ("Ada") use ("-Es"); -- Symbolic traceback
end Binder;
package Install is
for Artifacts (".") use ("share");
end Install;
end Ada_Chip;
|