File: aunit_tests.gpr

package info (click to toggle)
libaunit 1.03-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 324 kB
  • ctags: 7
  • sloc: ada: 1,552; makefile: 70
file content (28 lines) | stat: -rw-r--r-- 591 bytes parent folder | download | duplicates (4)
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
with "aunit.gpr";

project Aunit_Tests is

   for Languages use ("Ada");
   for Source_Dirs use ("./test");
   for Object_Dir use "./test";
   for Exec_Dir use "./";
   for Main use ("harness.adb");

   package Builder is
      for Default_Switches ("ada") use ("-g", "-gnatQ");
   end Builder;

   package Linker is
      for Default_Switches ("ada") use ("-g");
   end Linker;

   package Compiler is
      for Default_Switches ("ada") use ("-gnatf", "-g");
   end Compiler;

   package Binder is
      for Default_Switches ("ada") use ("-E", "-static");
   end Binder;

end Aunit_Tests;