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: Svc_Cfg_IPC_Server.mpc 85212 2009-04-29 13:53:34Z johnnyw $
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
}
}
|