summaryrefslogtreecommitdiff
path: root/TAO/examples/Callback_Quoter/Callback_Quoter.mpc
blob: 25e016ec2fe85b2e1627e8a70c22c7f8eb02c297 (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
56
// -*- MPC -*-
project(*IDL): taoidldefaults {
  IDL_Files {
    Consumer.idl
    Notifier.idl
  }
  custom_only = 1
}

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

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

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