1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2003-2006 --
-- AdaCore --
-- --
-- This library 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 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 --
-- General Public License for more details. --
-- --
-- You should have received a copy of the GNU General Public License --
-- along with this library; if not, write to the Free Software Foundation, --
-- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --
-- --
------------------------------------------------------------------------------
project Shared is
type Build_Type is ("Debug", "Release");
Build : Build_Type := external ("PRJ_BUILD", "Release");
type OS_Type is ("UNIX", "Windows_NT");
OS : OS_Type := external ("OS", "UNIX");
type Socket_Type is ("std", "ssl", "openssl", "gnutls");
Socket : Socket_Type := external ("SOCKET", "std");
for Source_Dirs use ();
------------
-- XMLAda --
------------
type XMLAda_Type is ("Installed", "Disabled");
XMLAda : XMLAda_Type := external ("PRJ_XMLADA", "Installed");
----------
-- ASIS --
----------
type ASIS_Type is ("Installed", "Disabled");
ASIS : ASIS_Type := external ("PRJ_ASIS", "Installed");
-------------
-- SOCKLIB --
-------------
type SOCKLIB_Type is ("GNAT", "AdaSockets", "IPv6");
SOCKLIB : SOCKLIB_Type := external ("PRJ_SOCKLIB", "GNAT");
-----------
-- OSLIB --
-----------
type OSLIB_Type is ("GNAT", "Win32", "POSIX");
OSLIB : OSLIB_Type := external ("PRJ_OSLIB", "GNAT");
-------------------------
-- Compression library --
-------------------------
ZLib := ("-L../lib", "-lz");
---------
-- Ide --
---------
package Ide is
for Vcs_Kind use "CVS";
for VCS_Log_Check use "style_checker -l70";
for VCS_File_Check use "style_checker -lang Ada -cp -cy -lang XML -l256";
end Ide;
--------------
-- Compiler --
--------------
Global_Options := ("");
-- Options used for all Ada units in both Debug and Release modes
Common_Options :=
("-gnatwcfijkmruv", "-gnaty3abcefhiklmnoprstx", "-Wall") & Global_Options;
-- Common options used for the Debug and Release mode
Debug_Options :=
("-g", "-gnata", "-gnatVa", "-gnatQ", "-gnato", "-gnatwe");
Release_Options :=
("-O2", "-gnatn");
package Compiler is
case Build is
when "Debug" =>
for Default_Switches ("Ada") use Common_Options & Debug_Options;
when "Release" =>
for Default_Switches ("Ada") use Common_Options & Release_Options;
end case;
end Compiler;
------------
-- Binder --
------------
package Binder is
for Default_Switches ("Ada") use ("-E");
end Binder;
-------------
-- Builder --
-------------
package Builder is
for Default_Switches ("Ada") use ("-m");
end Builder;
------------
-- Linker --
------------
package Linker is
for Default_Switches ("Ada") use ZLib;
end Linker;
end Shared;
|