1------------------------------------------------------------------------------
2--                             Templates Parser                             --
3--                                                                          --
4--                     Copyright (C) 2005-2016, AdaCore                     --
5--                                                                          --
6--  This is free software;  you can redistribute it  and/or modify it       --
7--  under terms of the  GNU General Public License as published  by the     --
8--  Free Software  Foundation;  either version 3,  or (at your option) any  --
9--  later version.  This software is distributed in the hope  that it will  --
10--  be useful, but WITHOUT ANY WARRANTY;  without even the implied warranty --
11--  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU     --
12--  General Public License for  more details.                               --
13--                                                                          --
14--  You should have  received  a copy of the GNU General  Public  License   --
15--  distributed  with  this  software;   see  file COPYING3.  If not, go    --
16--  to http://www.gnu.org/licenses for a complete copy of the license.      --
17------------------------------------------------------------------------------
18
19with "../templates_parser";
20with "../tp_shared.gpr";
21
22project Docs is
23
24   for Languages use ("Ada", "Project file");
25
26   for Source_Dirs use ("src");
27   for Object_Dir use "build/obj";
28   for Exec_Dir use "build/bin";
29
30   package Compiler is
31      for Default_Switches ("Ada") use ("-gnat05") & TP_Shared.Adaflags;
32   end Compiler;
33
34   package Binder renames TP_Shared.Binder;
35
36   package Builder renames TP_Shared.Builder;
37
38   package Linker renames TP_Shared.Linker;
39
40   package Ide renames TP_Shared.Ide;
41
42end Docs;
43