summaryrefslogtreecommitdiff
path: root/TAO/tests/TransportCurrent/Framework/Framework.mpc
blob: 8dad4702ca066f101ff3d1a81e737504d179fa42 (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
// -*- MPC -*-
// $Id$

project(*Server): taoserver, tc, pi_server {

  after += Current_Test_Lib_Client Current_Test_Lib_Server
  libs += Current_Test_Lib_Client Current_Test_Lib_Server

  specific (automake) {
    includes += $(srcdir)/../lib ../lib
  } else {
    includes += . ../lib
    libpaths += ../lib
  }

  Source_Files {
    server.cpp
    Current_Test_Impl.cpp
    Tester.cpp
    Server_Main.cpp
  }

  IDL_Files {
  }
}

project(*Client): taoclient, tc, dynamicinterface {

  after += *Server Current_Test_Lib_Client Current_Test_Lib_Server
  libs += Current_Test_Lib_Client Current_Test_Lib_Server

  specific (automake) {
    includes += $(srcdir)/../lib ../lib
  } else {
    includes += . ../lib
    libpaths += ../lib
  }

  Source_Files {
    client.cpp
    Tester.cpp
  }

  IDL_Files {
  }
}