-- Copyright (c) 2009 Stephen Leake -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program 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 General Public License for more details. -- Used in building the GNADE packages project GNADE_Common_Ref is type Lib_Type is ("static", "dynamic"); Libtype : Lib_Type := external ("LIBTYPE"); for Languages use ("Ada"); for Source_Dirs use ("../support"); for Library_Dir use "tmp"; for Library_ALI_Dir use "tmp/common-" & Libtype; for Library_Name use "gnadecommon"; for Library_Kind use Libtype; for Externally_Built use "true"; end GNADE_Common_Ref;