1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
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
("client.adb",
"server.adb",
"dynclient.adb",
"dynserver.adb",
"parallel_client.adb");
end local;
|