File: tools.gpr

package info (click to toggle)
libaws 2.2dfsg-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 7,624 kB
  • ctags: 1,173
  • sloc: ada: 61,829; ansic: 6,483; makefile: 1,282; xml: 196; sh: 119; java: 112; python: 66; sed: 40
file content (35 lines) | stat: -rw-r--r-- 1,282 bytes parent folder | download
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
with "templates_parser";
with "xmlada2";
project Tools is
   for Source_Dirs use ("../debian/tmp", "../config",
                       "../include", "../include/ai302", "../soap", "../src",
                       "../ssl", "../tools", "../xsrc");
   for Object_Dir use "../obj-tools";
   for Exec_Dir use "tmp";
   for Main use ("awsres", "wsdl2aws");

   package Compiler is
      for Default_Switches ("Ada") use ("-O2", "-gnatafno", "-gnatVa");
   end Compiler;

   package Naming is
      --  Configuration for GNU/Linux using GNU TLS for strong crypto
      for Body ("AWS.Net.SSL") use "aws-net-ssl__gnutls.adb";
      for Body ("AWS.Net.SSL.Certificate")
        use "aws-net-ssl-certificate__gnutls.adb";
      for Body ("AWS.Net.Std") use "aws-net-std__gnat.adb";
      for Body ("AWS.OS_Lib") use "aws-os_lib__gnat.adb";
      for Body ("AWS.Translator.Conversion")
        use "aws-translator-conversion__f.adb";
      for Spec ("SSL.Thin") use "ssl-thin__gnutls.ads";
      for Spec ("Templates_Parser.Configuration")
        use "templates_parser-configuration__aws.ads";
   end Naming;

   package Linker is
      for Default_Switches ("Ada") use
        (Templates_Parser.Linker_Switches, XMLAda2.Linker_Switches,
         "-laws", "-lz");
   end Linker;

end Tools;