summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2289_Regression/Bug_2289_Regression.mpc
blob: 960c4f67ad2f0e48c7a438ebe4d8b6b91f087f3c (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
// -*- MPC -*-
// $Id$

project(*idl): taoidldefaults {
  idlflags += -Gp -Gd -Sa -St
  IDL_Files {
    Test.idl
  }
  custom_only = 1
}

project(*Server): taoserver, iortable {
  exename = server
  after += *idl
  Source_Files {
    server.cpp
    TestC.cpp
    TestS.cpp
    MyInterfaceImpl.cpp
  }
  IDL_Files {
  }
}

project(*Client): taoserver, iortable {
  exename = client
  after += *idl
  Source_Files {
    client.cpp
    TestC.cpp
    TestS.cpp
    MyInterfaceImpl.cpp
  }
  IDL_Files {
  }
}