1 ------------------------------------------------------------------------------
4 -- Copyright (C) 2007-2008 --
5 -- Pascal Obry - Olivier Ramonat --
7 -- This library is free software; you can redistribute it and/or modify --
8 -- it under the terms of the GNU General Public License as published by --
9 -- the Free Software Foundation; either version 2 of the License, or (at --
10 -- your option) any later version. --
12 -- This library is distributed in the hope that it will be useful, but --
13 -- WITHOUT ANY WARRANTY; without even the implied warranty of --
14 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --
15 -- General Public License for more details. --
17 -- You should have received a copy of the GNU General Public License --
18 -- along with this library; if not, write to the Free Software Foundation, --
19 -- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. --
20 ------------------------------------------------------------------------------
24 for Source_Dirs use ();
26 type Build_Type is ("Debug", "Release", "Profile");
27 Build : Build_Type := external ("PRJ_BUILD", "Debug");
29 type OS_Type is ("UNIX", "Windows_NT");
30 OS : OS_Type := external ("OS", "UNIX");
32 type In_Test_Kind is ("TRUE", "FALSE");
33 In_Test : In_Test_Kind := external ("IN_TEST", "FALSE");
41 when "Debug" | "Release" =>
42 for Default_Switches ("Ada") use ("-m", "-s");
43 for Executable ("savadur-bin") use "savadur";
45 for Default_Switches ("Ada") use
46 ("-m", "-s", "-fprofile-arcs", "-ftest-coverage");
47 for Executable ("savadur-bin") use "savadur-profile";
56 ("-gnat05", "-gnatwa", "-gnatwe",
57 "-gnaty3Aabcdefhiklmnoprstux", "-Wall");
58 -- Common options used for the Debug and Release modes
61 ("-g", "-gnata", "-gnatVa", "-gnatQ", "-gnato");
68 when "Debug" | "Profile" =>
69 for Default_Switches ("Ada") use Common_Options & Debug_Options;
72 for Default_Switches ("Ada") use Common_Options & Release_Options;
82 when "Debug" | "Profile" =>
83 for Default_Switches ("Ada") use ("-E", "-g");
86 for Default_Switches ("Ada") use ("-E");
97 for Default_Switches ("Ada") use ("-g");
100 for Default_Switches ("Ada") use ("-g", "-lgmem");
112 for VCS_Kind use "Git";