summaryrefslogtreecommitdiff
path: root/TAO/examples/Advanced/ch_8_and_10/Advanced_ch_8_and_10.mpc
blob: 468c4508383ac72b881de7479521e8f65239d517 (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
// -*- MPC -*-
// $Id$

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

project(*client) : taoclient {
  after += *idl
  source_files {
    client.cpp
    CCSC.cpp
  }
  IDL_Files {
  }
}

project(*server) : taoserver {
  requires += dummy_label
  after += *idl
  source_files {
    server.cpp
    icp.cpp
    CCSC.cpp
    CCSS.cpp
  }
  IDL_Files {
  }
}