mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
19 lines
467 B
INI
19 lines
467 B
INI
configuration Echo is
|
|
pragma Name_Server (Standalone);
|
|
pragma Starter (None);
|
|
|
|
-- We declare a server partition that executes the server package ...
|
|
|
|
Server_Partition : partition := (Server);
|
|
|
|
-- ... and a client partition that executes the client main procedure
|
|
|
|
Client_Partition : partition;
|
|
procedure Client is in Client_Partition;
|
|
|
|
-- The partitions' executables should be put in ./bin
|
|
|
|
for Partition'Directory use "bin";
|
|
|
|
end Echo;
|