summaryrefslogtreecommitdiff
path: root/TAO/tests/MT_NoUpcall_Client_Leader/MT_NoUpcall.mpc
blob: a11e11f20a60587f8b6dcb1b429eea6cbb351dbc (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
// -*- MPC -*-
// $Id$


project(*idl): taoidldefaults {
  idlflags += -Sp
  IDL_Files {
    SharedIntf.idl
  }
  custom_only = 1
}

project(*Server): messaging, taoserver, threads {
  exename = server
  after += *idl
  Source_Files {
    SharedIntf_i.cpp
    server.cpp
    worker.cpp
    chatter.cpp
    police.cpp
  }
  Source_Files {
    SharedIntfC.cpp
    SharedIntfS.cpp
  }
  IDL_Files {
  }
}

project(*Client): messaging, taoserver, threads {
  exename = client
  after += *idl
  Source_Files {
    SharedIntf_i.cpp
    client.cpp
    worker.cpp
    chatter.cpp
    police.cpp
  }
  Source_Files {
    SharedIntfC.cpp
    SharedIntfS.cpp
  }
  IDL_Files {
  }
}