summaryrefslogtreecommitdiff
path: root/TAO/tests/DLL_ORB/DLL_ORB.mpc
blob: 4785a6eb897e58cc0ba18e9989f544a4f2715a4a (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
project(Test Client Module): taolib_with_idl {
  sharedname = Test_Client_Module
  libs      += TAO
  idlflags  += -Wb,pre_include=ace/pre.h -Wb,post_include=ace/post.h
  dllflags   = TEST_CLIENT_MODULE_BUILD_DLL

  Source_Files {
    TestC.cpp
    Test_Client_Module.cpp
  }  
}

project(Test Server Module) : taolib_with_idl {
  depends   += PortableServer
  sharedname = Test_Server_Module
  libs      += TAO_PortableServer TAO
  idlflags  += -Wb,pre_include=ace/pre.h -Wb,post_include=ace/post.h
  dllflags   = TEST_SERVER_MODULE_BUILD_DLL

  Source_Files {
    Test_Server_Module.cpp
    Test_i.cpp
  }
}

project(server) : taoexe {
  exename = server
  IDL_Files {
  }

  Source_Files {
    server.cpp
  }
}

project : client {
  IDL_Files {
  }

  Source_Files {
    client.cpp
  }
}