summaryrefslogtreecommitdiff
path: root/trunk/TAO/examples/Advanced/ch_3/Advanced_ch_3.mpc
blob: d20f18f86d785449e9a5861e907dee6943a64e0b (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
// -*- MPC -*-
// $Id$

project(*idl) : taoclient {
  IDL_Files {
    time.idl
  }
  custom_only = 1
}

project(*client) : taoclient, anytypecode {
  after += *idl
  requires += corba_messaging
  source_files {
    timeC.cpp
    client.cpp
  }
  IDL_Files {
  }
}

project(*server) : taoserver {
  after += *idl
  source_files {
    timeC.cpp
    timeS.cpp
    server.cpp
  }
  IDL_Files {
  }
}