1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
-- GNAT Project file that builds the ASIS library.
-- Copyright (c) 2005, 2006, 2008 Ludovic Brenta <ludovic@ludovic-brenta.org>
-- 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 3 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.
with "gnatvsn.gpr";
project Install_ASIS is
for Source_Dirs use ("../asis", "../obj");
for Object_Dir use "../obj";
for Main use ("install_asis");
package Compiler is
for Default_Switches ("Ada") use ("-O2", "-gnatafno", "-gnatwa", "-gnatVa");
end Compiler;
end Install_ASIS;
|