summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2234_Regression/Bug_2234_Regression.mpc
blob: f44af041529ef18f0b8608a67c2e5e972a32ef50 (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
// -*- MPC -*-
project(*idl): taoidldefaults,anytypecode {
  IDL_Files {
    Test.idl
  }
  custom_only = 1
}

project (*client) : taoclient,anytypecode {
  after += *idl

  Source_Files {
    TestC.cpp
    client.cpp
  }
  IDL_Files {
  } 
}

project (*server) : taoserver,pi_server {
  after += *idl
  after += *client
   
  Source_Files {
    TestC.cpp
    TestS.cpp
    server.cpp
  }
  IDL_Files {
  }
}