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

« back to all changes in this revision

Viewing changes to src/gnome/gnome.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
with "../../shared";
 
2
with "../gtkada_src";
 
3
 
 
4
project Gnome is
 
5
   for Object_Dir use "obj";
 
6
 
 
7
   case Shared.Build_Gnome is
 
8
       when "True"  => for Source_Dirs use (".");
 
9
       when "False" => for Source_Dirs use ();
 
10
   end case;
 
11
 
 
12
   for Languages use ("Ada");
 
13
   package Builder  renames Shared.Builder;
 
14
   package Compiler renames Shared.Compiler;
 
15
   package IDE      renames Shared.IDE;
 
16
end Gnome;
 
17