~ubuntu-branches/ubuntu/intrepid/libgtkada2/intrepid

« back to all changes in this revision

Viewing changes to projects/gtkada_install_dynamic.gpr

  • Committer: Bazaar Package Importer
  • Author(s): Ludovic Brenta
  • Date: 2008-07-31 18:10:47 UTC
  • mfrom: (1.1.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20080731181047-6m1y25zjad0p2yjr
Tags: 2.12.0-2

Correct the project files to add a Library_ALI_Dir and correct the
Library_Name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-----------------------------------------------------------------------
 
2
--          GtkAda - Ada95 binding for the Gimp Toolkit              --
 
3
--                                                                   --
 
4
--                      Copyright (C) 2007                           --
 
5
--                            AdaCore                                --
 
6
--                                                                   --
 
7
-- This library is free software; you can redistribute it and/or     --
 
8
-- modify it under the terms of the GNU General Public               --
 
9
-- License as published by the Free Software Foundation; either      --
 
10
-- version 2 of the License, or (at your option) any later version.  --
 
11
--                                                                   --
 
12
-- This library is distributed in the hope that it will be useful,   --
 
13
-- but 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         --
 
18
-- License along with this library; if not, write to the             --
 
19
-- Free Software Foundation, Inc., 59 Temple Place - Suite 330,      --
 
20
-- Boston, MA 02111-1307, USA.                                       --
 
21
--                                                                   --
 
22
-----------------------------------------------------------------------
 
23
 
 
24
--  Project file used by the InstallShield to build the GtkAda shared
 
25
--  library on Windows.
 
26
 
 
27
project GtkAda_Install_Dynamic is
 
28
 
 
29
   for Source_Dirs use (".");
 
30
   for Library_Dir use "../../bin";
 
31
   for Library_ALI_Dir use "../../lib/gtkada/relocatable";
 
32
   for Library_Kind use "relocatable";
 
33
   for Library_Name use "gtkada-2.12";
 
34
   for Library_Options use ("-L.", "-L../../bin", "-L../../lib",
 
35
        "-lgtkada_c",
 
36
        "-lgtk-win32-2.0",
 
37
        "-lgdk-win32-2.0",
 
38
        "-latk-1.0",
 
39
        "-lgdk_pixbuf-2.0",
 
40
        "-lpangowin32-1.0",
 
41
        "-lgdi32",
 
42
        "-lpangocairo-1.0",
 
43
        "-lpango-1.0",
 
44
        "-ljpeg",
 
45
        "-lpng",
 
46
        "-lcairo",
 
47
        "-lgobject-2.0",
 
48
        "-lgmodule-2.0",
 
49
        "-lglib-2.0",
 
50
        "-lintl",
 
51
        "-liconv",
 
52
        "-luser32");
 
53
 
 
54
   package Compiler is
 
55
      for Default_Switches ("Ada") use ("-O2");
 
56
   end Compiler;
 
57
 
 
58
end GtkAda_Install_Dynamic;