~angelsl/ubuntu/wily/gcc-5/mips-cross

« back to all changes in this revision

Viewing changes to debian/gnatprj.gpr

  • Committer: angelsl
  • Date: 2015-10-30 03:30:35 UTC
  • Revision ID: angelsl-20151030033035-rmug41zm8hyjgisg
Original import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--  Project file for use with GNAT
 
2
--  Copyright (c) 2005, 2008 Ludovic Brenta <ludovic@ludovic-brenta.org>
 
3
--
 
4
--  This program is free software; you can redistribute it and/or modify
 
5
--  it under the terms of the GNU General Public License as published by
 
6
--  the Free Software Foundation; either version 3 of the License, or
 
7
--  (at your option) any later version.
 
8
--
 
9
--  This program is distributed in the hope that it will be useful,
 
10
--  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
--  GNU General Public License for more details.
 
13
--
 
14
--  This project file is designed to help build applications that use
 
15
--  GNAT project files.  Here is an example of how to use this project file:
 
16
--
 
17
--  with "gnatprj";
 
18
--  project Example is
 
19
--     for Object_Dir use "obj";
 
20
--     for Exec_Dir use ".";
 
21
--     for Main use ("example");
 
22
--  end Example;
 
23
 
 
24
with "gnatvsn.gpr";
 
25
project Gnatprj is
 
26
   for Library_Name use "gnatprj";
 
27
   for Library_Dir use "/usr/lib";
 
28
   for Library_Kind use "dynamic";
 
29
   for Source_Dirs use ("/usr/share/ada/adainclude/gnatprj");
 
30
   for Library_ALI_Dir use "/usr/lib/ada/adalib/gnatprj";
 
31
   for Externally_Built use "true";
 
32
end Gnatprj;