summaryrefslogtreecommitdiff
path: root/examples/Service_Configurator/IPC-tests/server/Svc_Cfg_IPC_Server.mpc
blob: 900cd9635d23de90c26118b1444f76c0a320561e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// -*- MPC -*-
// $Id$

project(*Lib) : acelib, avoids_ace_for_tao {
  sharedname = IPC_Tests_Server
  dynamicflags += ACE_BUILD_SVC_DLL
  Source_Files {
    Handle_Broadcast.cpp
    Handle_L_CODgram.cpp
    Handle_L_Dgram.cpp
    Handle_L_FIFO.cpp
    Handle_L_Pipe.cpp
    Handle_L_SPIPE.cpp
    Handle_L_Stream.cpp
    Handle_R_Stream.cpp
    Handle_Thr_Stream.cpp
    Handle_Timeout.cpp
  }
}

project(*test) : aceexe, avoids_ace_for_tao {
  exename = server_test
  after  += Svc_Cfg_IPC_Server_Lib
  libs   += IPC_Tests_Server
  Source_Files {
    server_test.cpp
  }
}