File: tests.gpr

package info (click to toggle)
liblog4ada 1.3.1.b6dafb49-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 572 kB
  • sloc: ada: 3,168; makefile: 33; sh: 14
file content (29 lines) | stat: -rw-r--r-- 897 bytes parent folder | download | duplicates (5)
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
with "log4Ada.gpr";

project tests is
  for Source_Dirs use ("demos");
  case log4Ada.binaries is
      when "ppc" =>
        for Object_Dir use "obj/ppc";
        for Exec_Dir use "bin/ppc";
      when "ppc64" =>
        for Object_Dir use "obj/ppc64";
        for Exec_Dir use "bin/ppc64";
      when "i686" =>
        for Object_Dir use "obj/i686";
        for Exec_Dir use "bin/i686";
      when "x86_64" =>
        for Object_Dir use "obj/x86_64";
        for Exec_Dir use "bin/x86_64";
  end case;
  for main use ("test_console.adb",
                "test_soap_server.adb",
                "test_file.adb",
                "test_socketappender.adb",
                "central_log_tcp.adb",
                "test_tcp_stream_appender.adb");
  package Compiler is
    for Default_Switches ("ada") use
      ("-g", "-gnat05", "-gnatwa", "-gnatwy", "-gnatf", "-gnato");
  end Compiler;
end tests;