File: local.gpr

package info (click to toggle)
polyorb 2.11~20140418-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 30,012 kB
  • ctags: 465
  • sloc: ada: 273,015; sh: 4,507; makefile: 4,265; python: 1,332; cpp: 1,213; java: 507; ansic: 274; xml: 30; perl: 23; exp: 6
file content (19 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
with "polyorb", "polyorb_test_common";

project local is

   Dir := external ("Test_Dir");
   Obj_Dir := PolyORB_Test_Common.Build_Dir & Dir;
   for Object_Dir use Obj_Dir;
   for Source_Dirs use (Obj_Dir, PolyORB_Test_Common.Source_Dir & Dir);

   package Compiler is

      for Default_Switches ("Ada")
         use PolyORB_Test_Common.Compiler'Default_Switches ("Ada");

   end Compiler;

   for Main use ("test000.adb", "test001.adb", "test002.adb", "test003.adb", "test004.adb");

end local;