Fix typos, add more info in README
[gwiad.git] / plugins / gwiad-plugins.gpr
blob2fbd50e9d697ac2609404c354e91a0f6df5e78bb
1 ------------------------------------------------------------------------------
2 --                                  Gwiad                                   --
3 --                                                                          --
4 --                           Copyright (C) 2007                             --
5 --                            Olivier Ramonat                               --
6 --                                                                          --
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.                                         --
11 --                                                                          --
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.                                --
16 --                                                                          --
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 ------------------------------------------------------------------------------
22 with "../shared";
23 with "../gwiad/gwiad";
25 Project Gwiad.Plugins is
27    for Source_Dirs use ("src");
28    for Library_Name use "gwiad_plugins";
29    for Library_Kind use "dynamic";
31    case Shared.Build is
32       when "Debug" =>
33          for Object_Dir use "../.build/debug/plugins/obj";
34          for Library_Dir use "../.build/debug/plugins/lib";
35       when "Profile" =>
36          for Object_Dir use "../.build/profile/plugins/obj";
37          for Library_Dir use "../.build/profile/plugins/lib";
38          for Library_Options use ("-fprofile-arcs");
39       when "Release" =>
40          for Object_Dir use "../.build/release/plugins/obj";
41          for Library_Dir use "../.build/release/plugins/lib";
42    end case;
44    -------------
45    -- Builder --
46    -------------
48    package Builder renames Shared.Builder;
50    --------------
51    -- Compiler --
52    --------------
54    package Compiler renames Shared.Compiler;
56    ---------
57    -- Ide --
58    ---------
60    package Ide renames Shared.Ide;
62 end Gwiad.Plugins;