mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
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
20 lines
556 B
Plaintext
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;
|