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


project(Test_ORT_Server): taoexe, portableserver {
  requires += interceptors
  idlflags += -I$(TAO_ROOT) -Gv

  IDL_Files {
    ORT_test.idl
    ObjectReferenceFactory.idl
  }

  Source_Files {
    ORT_testC.cpp
    ORT_testS.cpp
    ObjectReferenceFactoryC.cpp
    ObjectReferenceFactory.cpp
    ORT_test_i.cpp
    ServerORBInitializer.cpp
    ServerRequestInterceptor.cpp
    ORT_test_IORInterceptor.cpp
    server.cpp
  }
}


project(Test_ORT_Client): taoexe {
  requires += interceptors
  idlflags += -I$(TAO_ROOT) -Gv
  after += Test_ORT_Server

  IDL_Files {
    ORT_test.idl
  }

  Source_Files {
    ORT_testC.cpp
    client.cpp
  }
}