1------------------------------------------------------------------------------
2--                                                                          --
3--                     ASIS UTILITY LIBRARY COMPONENTS                      --
4--                                                                          --
5--                                 A S I S                                  --
6--                                                                          --
7--                    Copyright (C) 2003-2015, AdaCore                      --
8--                                                                          --
9-- Asis Utility Library (ASIS UL) is free software; you can redistribute it --
10-- and/or  modify  it  under  terms  of  the  GNU General Public License as --
11-- published by the Free Software Foundation; either version 2, or (at your --
12-- option)  any later version.  ASIS UL  is distributed in the hope that it --
13-- will  be  useful,  but  WITHOUT  ANY  WARRANTY; without even the implied --
14-- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --
15-- GNU  General Public License for more details. You should have received a --
16-- copy of the  GNU General Public License  distributed with GNAT; see file --
17-- COPYING. If not, write to the Free Software Foundation, 59 Temple Place  --
18--  - Suite 330, Boston,                                                    --
19--                                                                          --
20-- ASIS UL is maintained by ACT Europe (http://www.act-europe.fr).          --
21--                                                                          --
22------------------------------------------------------------------------------
23
24with "gnat_util";
25with "common";
26
27project Asis is
28
29   for Languages use ("ada");
30   for Source_Dirs use ("asis");
31   for Object_Dir use "obj";
32   for Library_Name use "asis";
33   for Library_Dir use "lib";
34   for Library_Kind use "static";
35
36   package Builder renames Common.Builder;
37   package Compiler renames Common.Compiler;
38   package Ide renames Common.Ide;
39
40   package Install is
41      for Artifacts ("share/gps/plug-ins") use ("doc/asis.xml");
42      for Artifacts ("share/doc/asis/html") use ("doc/html/**");
43      for Artifacts ("share/doc/asis/pdf") use ("doc/pdf/*.pdf");
44      for Artifacts ("share/doc/asis/info") use ("doc/info/*.info");
45      for Artifacts ("share/doc/asis/txt") use ("doc/txt/*.txt");
46
47      for Install_Name use "asislib";
48   end Install;
49
50end Asis;
51