Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Abstract_Interface / Abstract_Interface.mpc
blob046d40dcfa0b08d30fc6c5ded05b87f16f098c6a
1 // -*- MPC -*-
2 project(*idl): taoidldefaults, valuetype {
3   IDL_Files {
4     test.idl
5   }
7   custom_only = 1
10 project(*client) : taoclient, valuetype {
11   after += *idl
13   IDL_Files {
14   }
16   Source_Files {
17     client.cpp
18     testC.cpp
19   }
21   Header_Files {
22     testC.h
23   }
26 project(*server) : taoserver, valuetype {
27   after += *client
28   after += *idl
30   IDL_Files {
31   }
33   Source_Files {
34     server.cpp
35     test_i.cpp
36     testC.cpp
37     testS.cpp
38   }
40   Header_Files {
41     test_i.h
42     testC.h
43     testS.h
44   }