2007-01-15 18:08:09 +00:00
|
|
|
------------------------------------------------------------------------------
|
|
|
|
|
-- --
|
|
|
|
|
-- POLYORB COMPONENTS --
|
|
|
|
|
-- --
|
2009-12-17 17:20:18 +00:00
|
|
|
-- P O L Y O R B _ S R C --
|
2007-01-15 18:08:09 +00:00
|
|
|
-- --
|
|
|
|
|
-- P r o j --
|
|
|
|
|
-- --
|
2010-10-26 13:22:03 +00:00
|
|
|
-- Copyright (C) 2007-2010, Free Software Foundation, Inc. --
|
2007-01-15 18:08:09 +00:00
|
|
|
-- --
|
|
|
|
|
-- PolyORB is free software; you can redistribute it and/or modify it --
|
|
|
|
|
-- under terms of the GNU General Public License as published by the Free --
|
|
|
|
|
-- Software Foundation; either version 2, or (at your option) any later --
|
|
|
|
|
-- version. PolyORB is distributed in the hope that it will be useful, --
|
|
|
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
|
|
|
|
|
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public --
|
|
|
|
|
-- License for more details. You should have received a copy of the GNU --
|
|
|
|
|
-- General Public License distributed with PolyORB; see file COPYING. If --
|
|
|
|
|
-- not, write to the Free Software Foundation, 51 Franklin Street, Fifth --
|
|
|
|
|
-- Floor, Boston, MA 02111-1301, USA. --
|
|
|
|
|
-- --
|
|
|
|
|
-- As a special exception, if other files instantiate generics from this --
|
|
|
|
|
-- unit, or you link this unit with other files to produce an executable, --
|
|
|
|
|
-- this unit does not by itself cause the resulting executable to be --
|
|
|
|
|
-- covered by the GNU General Public License. This exception does not --
|
|
|
|
|
-- however invalidate any other reasons why the executable file might be --
|
|
|
|
|
-- covered by the GNU Public License. --
|
|
|
|
|
-- --
|
|
|
|
|
-- PolyORB is maintained by AdaCore --
|
|
|
|
|
-- (email: sales@adacore.com) --
|
|
|
|
|
-- --
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
|
|
2009-12-17 17:18:24 +00:00
|
|
|
with "polyorb_common";
|
2006-12-14 15:35:14 +00:00
|
|
|
|
2011-09-03 07:19:38 +00:00
|
|
|
library project PolyORB_src is
|
2006-12-14 15:35:14 +00:00
|
|
|
|
2008-02-25 12:49:56 +00:00
|
|
|
for Languages use ("Ada", "C");
|
|
|
|
|
|
2007-03-12 15:00:07 +00:00
|
|
|
Dir := "src";
|
2009-12-17 17:18:24 +00:00
|
|
|
Obj_Dir := PolyORB_Common.Build_Dir & Dir;
|
2007-03-12 15:00:07 +00:00
|
|
|
for Object_Dir use Obj_Dir;
|
2009-12-17 17:18:24 +00:00
|
|
|
for Source_Dirs use (Obj_Dir, PolyORB_Common.Source_Dir & Dir);
|
2010-10-26 13:22:03 +00:00
|
|
|
for Excluded_Source_List_File use Obj_Dir & "/src.exclude";
|
2007-01-16 21:00:17 +00:00
|
|
|
|
2009-12-17 17:28:35 +00:00
|
|
|
for Library_Name use "polyorb";
|
2009-12-17 17:18:24 +00:00
|
|
|
for Library_Dir use PolyORB_Common.Build_Dir & "lib";
|
|
|
|
|
for Library_ALI_Dir use PolyORB_Common.Build_Dir & "ali/src";
|
2011-09-21 06:33:45 +00:00
|
|
|
for Library_Kind use PolyORB_Common.Library_Type;
|
2006-12-14 15:35:14 +00:00
|
|
|
|
|
|
|
|
package Compiler is
|
|
|
|
|
|
2008-03-18 17:34:18 +00:00
|
|
|
for Default_Switches ("Ada") use
|
2009-12-17 17:18:24 +00:00
|
|
|
PolyORB_Common.Compiler'Default_Switches ("Ada");
|
2006-12-14 15:35:14 +00:00
|
|
|
|
|
|
|
|
end Compiler;
|
|
|
|
|
|
2009-12-17 17:18:24 +00:00
|
|
|
end PolyORB_src;
|