Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / orbsvcs / examples / CosEC / Factory / CosEC_Factory.mpc
blob8577f90b070a5a76cf3cfed61b4d4c893174adeb
1 // -*- MPC -*-
2 project(*idl) : orbsvcslib {
3  
4   IDL_Files { 
5     CosEventChannelFactory.idl
6   }
7   
8   custom_only = 1
11 project(*Client) : orbsvcsexe, event, event_skel, naming {
12   after += *idl
13   exename = FactoryClient
14   source_files {
15     FactoryClient.cpp
16     CosEventChannelFactoryC.cpp
17   }
18   IDL_Files {
19   }
22 project(*Server) : orbsvcsexe, event, event_serv, naming {
23   after += *idl
24   exename = FactoryServer
25   source_files {
26     main.cpp
27     FactoryDriver.cpp
28     CosEventChannelFactory_i.cpp
29     CosEventChannelFactoryS.cpp
30     CosEventChannelFactoryC.cpp
31   }
32   IDL_Files {
33   }