alog/alog_common.gpr

57 lines
1.7 KiB
Plaintext

--
-- Copyright (c) 2009-2014,
-- Reto Buerki, Adrian-Ken Rueegsegger
--
-- This file is part of Alog.
--
-- Alog is free software; you can redistribute it and/or modify
-- it under the terms of the GNU Lesser General Public License as published
-- by the Free Software Foundation; either version 2.1 of the License, or
-- (at your option) any later version.
--
-- Alog 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 Lesser General Public License for more details.
--
-- You should have received a copy of the GNU Lesser General Public License
-- along with Alog; if not, write to the Free Software
-- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
-- MA 02110-1301 USA
--
abstract project Alog_Common is
for Source_Dirs use ();
Adaflags := External_As_List ("ADAFLAGS", " ");
Cflags := External_As_List ("CFLAGS", " ");
Cppflags := External_As_List ("CPPFLAGS", " ");
Ldflags := External_As_List ("LDFLAGS", " ");
Languages := ("Ada", "C");
package Compiler is
for Default_Switches ("Ada") use
("-gnatygAdISuxo",
"-gnatVa",
"-gnatwal",
"-gnatf",
"-fstack-check",
"-gnato")
& Adaflags;
for Default_Switches ("C") use Cflags & Cppflags;
end Compiler;
package Binder is
for Default_Switches ("Ada") use ("-E");
end Binder;
package Linker is
-- Template for linking an executable.
-- Start with LDFLAGS as it may contain options like --as-needed.
for Leading_Switches ("Ada") use Ldflags;
end Linker;
end Alog_Common;