1------------------------------------------------------------------------------
2--                     XML/Ada - An XML suite for Ada95                     --
3--                                                                          --
4--                     Copyright (C) 2001-2017, AdaCore                     --
5--                                                                          --
6-- This library is free software;  you can redistribute it and/or modify it --
7-- under terms of the  GNU General Public License  as published by the Free --
8-- Software  Foundation;  either version 3,  or (at your  option) any later --
9-- version. This library is distributed in the hope that it will be useful, --
10-- but WITHOUT ANY WARRANTY;  without even the implied warranty of MERCHAN- --
11-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE.                            --
12--                                                                          --
13-- As a special exception under Section 7 of GPL version 3, you are granted --
14-- additional permissions described in the GCC Runtime Library Exception,   --
15-- version 3.1, as published by the Free Software Foundation.               --
16--                                                                          --
17-- You should have received a copy of the GNU General Public License and    --
18-- a copy of the GCC Runtime Library Exception along with this program;     --
19-- see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    --
20-- <http://www.gnu.org/licenses/>.                                          --
21--                                                                          --
22------------------------------------------------------------------------------
23
24with "../shared.gpr";
25with "../unicode/xmlada_unicode.gpr";
26
27project XmlAda_Input is
28
29   for Library_Name use "xmlada_input_sources";
30   for Library_Kind use Shared.Library_Type;
31   for Object_Dir  use "obj/" & Project'Library_Kind;
32   for Library_Dir use "lib/" & Project'Library_Kind;
33   for Library_Version use "lib" & Project'Library_Name
34      & Shared.So_Ext & "." & Shared.Version;
35
36   package Builder  renames Shared.Builder;
37   package Compiler renames Shared.Compiler;
38   package Binder   renames Shared.Binder;
39   package Ide      renames Shared.Ide;
40
41   package Install is
42      for Artifacts ("share/doc/xmlada")
43        use ("../docs/_build/html/*", "../docs/_build/latex/XMLAda.pdf");
44      for Artifacts ("share/gpr") use ("../distrib/xmlada.gpr");
45      for Artifacts ("share/examples/xmlada/dom") use ("../docs/dom/*");
46      for Artifacts ("share/examples/xmlada/sax") use ("../docs/sax/*");
47      for Artifacts ("share/examples/xmlada/schema") use ("../docs/schema/*");
48      for Artifacts ("share/examples/xmlada/cross") use ("../docs/cross/*");
49   end Install;
50
51end XmlAda_Input;
52