File: tools.gpr

package info (click to toggle)
libaws 20.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 16,656 kB
  • sloc: ada: 95,505; python: 2,270; ansic: 1,017; makefile: 829; xml: 235; javascript: 202; java: 112; sh: 106
file content (26 lines) | stat: -rw-r--r-- 710 bytes parent folder | download | duplicates (2)
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
with "asis.gpr";
with "build_aws";
project Tools is
   for Source_Dirs use ("../tools");
   for Object_Dir use Project'Name & "_obj";
   for Exec_Dir use Project'Name & "_exe";
   for Main use
     ("ada2wsdl-main.adb",
      "aws_password.adb",
      "awsres.adb",
      "webxref.adb",
      "wsdl2aws-main.adb");

   package Compiler is
      for Default_Switches ("Ada") use External_As_List ("ADAFLAGS", " ");
   end Compiler;

   package Builder is
      for Executable ("ada2wsdl-main.adb") use "ada2wsdl";
      for Executable ("wsdl2aws-main.adb") use "wsdl2aws";
   end Builder;

   package Linker is
      for Leading_Switches ("Ada") use External_As_List ("LDFLAGS", " ");
   end Linker;
end Tools;