summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3647_Regression/Bug_3647_Regression.mpc
blob: 35be833411b664b28556fdfc880f8b28e4641647 (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
49
50
51
52
// -*- MPC -*-
// $Id$

project(*idl): taoidldefaults, strategies {
  IDL_Files {
    Test.idl
  }
  custom_only = 1
}

project(*Backend): taoserver, utils, strategies {
  after += *idl
  Source_Files {
    Backend_Impl.cpp
    backend_server.cpp
  }
  Source_Files {
    TestC.cpp
    TestS.cpp
  }
  IDL_Files {
  }
  exename = backend_server
}

project(*Middle): taoserver, messaging, utils, strategies {
  after += *idl
  Source_Files {
    Middle_Impl.cpp
    middle_server.cpp
  }
  Source_Files {
    TestC.cpp
    TestS.cpp
  }
  IDL_Files {
  }
  exename = middle_server
}

project(*Client): taoclient, messaging, utils, strategies {
  after += *idl
  Source_Files {
    client.cpp
  }
  Source_Files {
    TestC.cpp
  }
  IDL_Files {
  }
}