Files
PolyORB/examples/polyorb/local.gpr
Bob Duff 4f8341f7c9 * local.gpr, Makefile.in:
test_common.gpr was renamed to be polyorb_test_common.gpr,
so change all occurrences in local.gpr files under examples
and testsuite. Also correct documentation in Makefile.in.
Part of IC17-019.

Subversion-branch: /trunk/polyorb
Subversion-revision: 154420
2009-12-17 21:55:26 +00:00

20 lines
556 B
Plaintext

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 ("polyorb-test-no_tasking.adb", "polyorb-test-thread_pool.adb", "polyorb-test-no_tasking_poa.adb", "polyorb-test-thread_pool_poa.adb");
end local;