summaryrefslogtreecommitdiff
path: root/TAO/tests/TransportCurrent/lib/Current_Test_Lib.mpc
blob: 993ff32639369a07d0d24c1fa4a8ff6ca6c18819 (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
53
54
55
56
57
// -*- MPC -*-
// $Id$

project(*idl): taoidldefaults {

  dynamicflags += CURRENT_TEST_BUILD_DLL
  idlflags += -Wb,export_include=Current_Test_Export.h \
              -Wb,export_macro=Current_Test_Export

  IDL_Files {
    Current_Test.idl
  }

  custom_only = 1
}

project(*Client): tc {

  after += *idl TAO_TC
  includes += .
  libout = .
  dynamicflags += CURRENT_TEST_BUILD_DLL

  Source_Files {
    Client_Request_Interceptor.cpp
    Client_ORBInitializer.cpp
  }

  Source_Files {
    Current_TestC.cpp
  }

  IDL_Files {
  }
}

project(*Server): tc, pi_server {

  after += *Client
  includes += .
  libout = .
  dynamicflags += CURRENT_TEST_BUILD_DLL

  Source_Files {
    Server_Request_Interceptor.cpp
    Server_ORBInitializer.cpp
  }

  Source_Files {
    Current_TestC.cpp
    Current_TestS.cpp
  }

  IDL_Files {
  }
}