Put all objects in .build
[diouzhtu.git] / diouzhtu2html / diouzhtu2html.gpr
blobe75df3d2bd0d0d39d6661137c42535798dcf2578
1 ------------------------------------------------------------------------------
2 --                               Diouzhtu                                   --
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 "../diouzhtu/diouzhtu";
25 project Diouzhtu2Html is
27    for Source_Dirs use ("src", "test");
28    for Main use ("diouzhtu2html");
30    case Shared.Build is
31       when "Debug" =>
32          for Object_Dir use "../.build/debug/d2h/obj";
33       when "Profile" =>
34          for Object_Dir use "../.build/profile/d2h/obj";
35       when "Release" =>
36          for Object_Dir use "../.build/release/d2h/obj";
37    end case;
39    for Exec_Dir use "bin";
41    ------------
42    -- Binder --
43    ------------
45    package Binder renames Shared.Binder;
47    --------------
48    -- Compiler --
49    --------------
51    package Compiler renames Shared.Compiler;
53    -------------
54    -- Builder --
55    -------------
57    package Builder renames Shared.Builder;
59    ------------
60    -- Linker --
61    ------------
63    package Linker renames Shared.Linker;
65    ---------
66    -- Ide --
67    ---------
69    package Ide renames Shared.Ide;
71 end Diouzhtu2Html;