summaryrefslogtreecommitdiff
path: root/ACE/TAO/DevGuideExamples/PortableInterceptors/PICurrent/PICurrent.mpc
blob: 6c9f86ccd6616b0537a8aec1c89bc9bf937f4f9f (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
31
32
33
34
35
36
37
38
39
40
// $Id$

project(*idl): taoidldefaults {
  IDL_Files {
    Messenger.idl
  }
  custom_only = 1
}

project(*Server): taoserver, pi_server {
  exename = MessengerServer
  after += *idl
  Source_Files {
    Messenger_i.cpp
    ServerInitializer.cpp
    ServerInterceptor.cpp
    MessengerServer.cpp
  }
  Source_Files {
    MessengerC.cpp
    MessengerS.cpp
  }
  IDL_Files {
  }
}

project(*Client): taoclient, pi, interceptors {
  exename = MessengerClient
  after += *idl
  Source_Files {
    MessengerClient.cpp
    ClientInitializer.cpp
    ClientInterceptor.cpp
  }
  Source_Files {
    MessengerC.cpp
  }
  IDL_Files {
  }
}