summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3953_Regression/Bug_3953_Regression.mpc
blob: e6d6a6815f260ee31c176545c8f8655377112da1 (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
// -*- MPC -*-
project(*_Idl): taoidldefaults {
  IDL_Files {
    test.idl
  }
  custom_only = 1
}

project(*_Server): taoserver, messaging {
  after += *_Idl
  Source_Files {
    testC.cpp
    testS.cpp
    server_i.cpp
    server.cpp
  }
  IDL_Files {
  }
}

project(*_Client): taoserver {
  exename = client
  after += *_Idl
  Source_Files {
    testC.cpp
    testS.cpp
    client_i.cpp
    client.cpp
  }
  IDL_Files {
  }
}