summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/DevGuideExamples/NotifyService/OfferSubscriptions/OfferSubscriptions.mpc
blob: 5ebf8e8911ad72d38dcb397fafbc23f1bd8898d7 (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
41
42
43
44
45
46
47
48
49
50
51
52
// $Id$

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

project(*Server): taoserver, namingexe, notification_skel {
  exename = MessengerServer
  after += *idl
  Source_Files {
    StructuredEventSupplier_i.cpp
    MessengerServer.cpp
    Messenger_i.cpp
  }
  Source_Files {
    MessengerC.cpp
    MessengerS.cpp
  }
  IDL_Files {
  }
}

project(*Client): taoclient, namingexe, notification {
  exename = MessengerClient
  after += *idl
  Source_Files {
    MessengerClient.cpp
  }
  Source_Files {
    MessengerC.cpp
  }
  IDL_Files {
  }
}

project(*Consumer): taoserver, namingexe, notification_skel {
  exename = MessengerConsumer
  after += *idl
  Source_Files {
    MessengerConsumer.cpp
    StructuredEventConsumer_i.cpp
  }
  Source_Files {
    MessengerC.cpp
    MessengerS.cpp
  }
  IDL_Files {
  }
}