summaryrefslogtreecommitdiff
path: root/TAO/tests/ORB_Local_Config/Two_DLL_ORB/Two_DLL_ORB.mpc
blob: 636f83716aa600bc6ef0d8a96e420d793a95f974 (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
58
59
60
61
62
63
// -*- MPC -*-
// $Id$

project(ORB DLL Server) : taolib_with_idl {
  sharedname   = ORB_DLL_Server
  dynamicflags = ORB_DLL_BUILD_DLL

  IDL_Files {
    Test.idl
  }

  Source_Files {
    ORB_DLL.cpp
    Test_i.cpp
    TestC.cpp
    TestS.cpp
    server.cpp
    client.cpp
  }
  Header_Files {
    ORB_DLL.h
    ORB_DLL_Export.h
  }
  Resource_Files {
  }
}

project(ORB DLL Client) : taolib_with_idl {
  sharedname   = ORB_DLL_Client
  dynamicflags = ORB_DLL_BUILD_DLL

  IDL_Files {
    Test.idl
  }

  Source_Files {
    ORB_DLL.cpp
    TestC.cpp
    client.cpp
    server.cpp
  }
  Header_Files {
    ORB_DLL.h
    ORB_DLL_Export.h
  }
  Resource_Files {
  }
}


project(*) : ../../../tests/acetest, taoserver {
  after += lib ORB_DLL_Client ORB_DLL_Server
  exename = Test
  includes += ../lib
  libpaths += ../lib
  libs += lib
  Source_Files {
    Test.cpp
  }
}