summaryrefslogtreecommitdiff
path: root/examples/Service_Configurator/IPC-tests/server/Svc_Cfg_IPC_Server.mpc
blob: c44b40c6e32ed321272cdf0fa3244c2b4dfc7e87 (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
29
30
// -*- 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
  }
}