~kamalmostafa/ubuntu/lucid/libgmpada/fix-505349-ftbfs

« back to all changes in this revision

Viewing changes to demo/demo.gpr

  • Committer: Bazaar Package Importer
  • Author(s): Nicolas Boulenguez
  • Date: 2009-11-13 16:21:34 UTC
  • Revision ID: james.westby@ubuntu.com-20091113162134-owj6dip9rfbairza
Tags: upstream-0.0.20091113
ImportĀ upstreamĀ versionĀ 0.0.20091113

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--    GMPAda, binding to the Ada Language for the GNU MultiPrecision library.
 
2
--    Copyright (C) 2007 Nicolas Boulenguez <nicolas.boulenguez@free.fr>
 
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
--    You should have received a copy of the GNU General Public License
 
15
--    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 
 
17
with "gmp";
 
18
project Demo is
 
19
  for Main use ("demo");
 
20
  for Source_Dirs use GMP.Source_Dirs & (".");
 
21
  for Languages use GMP.Languages & ("Ada");
 
22
  package Linker is
 
23
     for Default_Switches ("Ada") use GMP.Linker_Switches;
 
24
  end Linker;
 
25
end Demo;