summaryrefslogtreecommitdiff
path: root/trunk/TAO/examples/OBV/Typed_Events/Typed_Events.mpc
blob: 02469a4f9d6cd894a206a9fe28b0bf2880be6f31 (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
// -*- MPC -*-
// $Id$

project(*IDL): taoidldefaults {
  idlflags -= -St
  IDL_Files {
    Event_Types.idl
  }
  custom_only = 1
}

project(*server): taoserver, utils, valuetype, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
  exename = server
  after += *IDL
  Source_Files {
    Event_TypesS.cpp
    Event_TypesC.cpp
    Server_i.cpp
    Event_Types_impl.cpp
    ../Simple_util.cpp
    server.cpp
  }
  IDL_Files {
  }
}

project(*client): taoserver, utils, valuetype, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
  exename = client
  after += *IDL
  Source_Files {
    Event_TypesS.cpp
    Event_TypesC.cpp
    Client_i.cpp
    Event_Types_impl.cpp
    ../Simple_util.cpp
    client.cpp
  }
  IDL_Files {
  }
}