summaryrefslogtreecommitdiff
path: root/TAO/examples/Callback_Quoter/Callback_Quoter.mpc
blob: 6f8864086d4627b28735a50c2ca0841e9517103b (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
53
54
55
// -*- MPC -*-
// $Id$

project(*IDL): taoidldefaults {
  IDL_Files {
    Consumer.idl
    Notifier.idl
  }
  custom_only = 1
}

project(Callback_Quoter notifier): namingexe, utils {
  after += *IDL
  Source_Files {
    Notifier_i.cpp
    Notifier_Input_Handler.cpp
    notifier.cpp
    NotifierS.cpp
    NotifierC.cpp
    ConsumerC.cpp
  }
  IDL_Files {
  }
}

project(Callback_Quoter consumer): namingexe, portableserver {
  after += *IDL
  Source_Files {
    Consumer_Input_Handler.cpp
    Consumer_Signal_Handler.cpp
    Consumer_Handler.cpp
    consumer.cpp
    Consumer_i.cpp
    ConsumerS.cpp
    ConsumerC.cpp
    NotifierC.cpp
  }
  IDL_Files {
  }
}

project(Callback_Quoter supplier): namingexe, portableserver {
  after += *IDL
  Source_Files {
    Supplier_i.cpp
    Supplier_Timer_Handler.cpp
    supplier.cpp
    Consumer_i.cpp
    ConsumerS.cpp
    ConsumerC.cpp
    NotifierC.cpp
  }
  IDL_Files {
  }
}