File: opentoken_test.gpr

package info (click to toggle)
opentoken 4.0b-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,812 kB
  • ctags: 57
  • sloc: ada: 12,643; makefile: 129; java: 37; sh: 6
file content (37 lines) | stat: -rw-r--r-- 994 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
27
28
29
30
31
32
33
34
35
36
37
--  For running OpenToken tests.
with "aunit";
with "common";
project OpenToken_Test is

   for Source_Dirs use
     ("../..",
      "../../Examples/ASU_Example_3_6",
      "../../Examples/ASU_Example_4_46",
      "../../Examples/ASU_Example_5_10",
      "../../Examples/Language_Lexer_Examples",
      "../../Language_Lexers",
      "../../Test");

   for Object_Dir use "obj";
   for Exec_Dir use ".";

   package Compiler is
      for Default_Switches ("Ada") use
        Common.Compiler.Debug_Switches &
        Common.Compiler.Style_Checks &
        Common.Compiler'Default_Switches ("Ada");

   end Compiler;

   package Builder is
      for Default_Switches ("Ada") use Common.Builder'Default_Switches ("Ada");

      --  We use ".exe" extension even on non-Windows, to simplify the makefiles.
      for Executable_Suffix use ".exe";
   end Builder;

   package Binder is
      for Default_Switches ("Ada") use Common.Binder'Default_Switches ("Ada");
   end Binder;

end OpenToken_Test;