Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / DLL_ORB / DLL_ORB.mpc
blob5c2f8dba9f62f087e18893d219b2c64e3b8031a8
1 // -*- MPC -*-
2 project (*idl): taoidldefaults {
3   IDL_Files {
4     Test.idl
5   }
6   custom_only = 1
9 project(*Test_Client_Module): taolib_with_idl, anytypecode {
10   after += *idl
11   sharedname    = Test_Client_Module
12   dynamicflags  = TEST_CLIENT_MODULE_BUILD_DLL
14   Source_Files {
15     TestC.cpp
16     Test_Client_Module.cpp
17   }
18   IDL_Files {
19   }
22 project(*Test_Server_Module) : taolib_with_idl, portableserver {
23   after += *idl
24   sharedname   = Test_Server_Module
25   dynamicflags += TEST_SERVER_MODULE_BUILD_DLL
26   after += *Test_CLient_Module
28   Source_Files {
29     Test_Server_Module.cpp
30     TestS.cpp
31     TestC.cpp
32     Test_i.cpp
33   }
35   IDL_Files {
36   }
39 project(*Server) : taoexe {
40   after += *idl
41   exename = server
42   IDL_Files {
43   }
45   Source_Files {
46     server.cpp
47   }
50 project(*Client): taoclient {
51   after += *idl
52   IDL_Files {
53   }
55   Source_Files {
56     client.cpp
57   }