File: logger.gpr

package info (click to toggle)
liblog4ada 1.3.1.b6dafb49-15
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 576 kB
  • sloc: ada: 3,168; makefile: 31; sh: 14
file content (16 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
with "aws";
with "../client/log4Ada";

project logger is

   for Source_Dirs use ("src/logger", "soap/server");
   for Object_Dir use "obj_logger";

   package Compiler is
      for Default_Switches ("ada") use
        ("-O2", "-gnaty", "-gnatf", "-gnatL", "-gnatwa", "-gnat12", "-gnatwae", "-gnato");
   end Compiler;

   for Main use ("soap_logger_main.adb");

end logger;