Menu

[fca612]: / demos / GNAT / ada2005.gpr  Maximize  Restore  History

Download this file

75 lines (66 with data), 2.8 kB

----------------------------------------------------------------------------
--  @filename  wikibook_ada.gpr
--  @brief     Root Package for WikiBook Ada Programming
--  @author    Martin Krischik
--  @date      $Date$
--  @version   1.0
--  @revision  $Revision$
--  @copyright ©, 2005, Martin Krischik
--  @licence   GNU Library General Public License
----------------------------------------------------------------------------
--  Copyright (C) 2003  Martin Krischik
--
--  This library is free software; you can redistribute it and/or
--  modify it under the terms of the GNU Library General Public
--  License as published by the Free Software Foundation; either
--  version 2 of the License, or (at your option) any later version.
--
--  This library is distributed in the hope that it will be useful,
--  but WITHOUT ANY WARRANTY; without even the implied warranty of
--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
--  Library General Public License for more details.
--
--  You should have received a copy of the GNU Library General Public
--  License along with this library; if not, write to the Free
--  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
----------------------------------------------------------------------------
--
--  Subversion Data
--
--     $Author$
--
--     $Revision$
--     $Date$
--
--  $Id$
--  $HeadURL$
--
----------------------------------------------------------------------------
--
-- This file is not to be edited thrue the project poroperties in GPS.
--

with "wikibook_ada";

project Ada2005 is

   Base    := WikiBook_Ada.Base;
   Style   : WikiBook_Ada.Style_Type  := WikiBook_Ada.Style;
   Target  : WikiBook_Ada.Target_Type := WikiBook_Ada.Target;
   OS      : WikiBook_Ada.OS_Type     := WikiBook_Ada.OS;

   for Languages    use ("Ada");
   for Source_Dirs  use WikiBook_Ada'Source_Dirs;
   for Object_Dir   use WikiBook_Ada'Object_Dir;
   for Exec_Dir     use WikiBook_Ada'Exec_Dir;

   package Pretty_Printer  renames WikiBook_Ada.Pretty_Printer;
   package Ide             renames WikiBook_Ada.Ide;
   package Naming          renames WikiBook_Ada.Naming;
   package Linker          renames WikiBook_Ada.Linker;
   package Finder          renames WikiBook_Ada.Finder;
   package Cross_Reference renames WikiBook_Ada.Cross_Reference;
   package Binder          renames WikiBook_Ada.Binder;
   package Compiler        renames WikiBook_Ada.Compiler;

   package Builder is
      for Default_Switches ("ada")       use  WikiBook_Ada.Builder'Default_Switches ("ada");
   end Builder;

end Ada2005;

----------------------------------------------------------------------------
--  vim: textwidth=0 nowrap tabstop=8 shiftwidth=3 softtabstop=3 expandtab
--  vim: filetype=ada encoding=utf-8 fileformat=unix
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.