aboutsummaryrefslogtreecommitdiffstats
path: root/ada_chip.gpr
blob: 8f0a3051e474144b10501ccf8da95d335e846467 (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/ada_chip_config.gpr";
project Ada_Chip is

   for Source_Dirs use ("src/", "config/");
   for Object_Dir use "obj/" & Ada_Chip_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 Ada_Chip_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;