diff options
Diffstat (limited to 'TAO/tests/Muxing/Muxing.mpc')
-rw-r--r-- | TAO/tests/Muxing/Muxing.mpc | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/TAO/tests/Muxing/Muxing.mpc b/TAO/tests/Muxing/Muxing.mpc new file mode 100644 index 00000000000..f920367a5b4 --- /dev/null +++ b/TAO/tests/Muxing/Muxing.mpc @@ -0,0 +1,38 @@ +// -*- MPC -*- +// $Id$ + +project(*idl): taoidldefaults { + IDL_Files { + Test.idl + } + custom_only = 1 +} + +project(*Server): taoserver { + after += *idl + Source_Files { + Receiver.cpp + Server_Task.cpp + server.cpp + } + Source_Files { + TestC.cpp + TestS.cpp + } + IDL_Files { + } +} + +project(*Client): taoclient, anytypecode { + after += *idl + after += *Server + Source_Files { + Client_Task.cpp + client.cpp + } + Source_Files { + TestC.cpp + } + IDL_Files { + } +} |