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

project(*Test Client Module): taolib_with_idl {
  sharedname    = Test_Client_Module
  dynamicflags  = TEST_CLIENT_MODULE_BUILD_DLL

  Source_Files {
    TestC.cpp
    Test_Client_Module.cpp
  }  
}

project(*Test Server Module) : taolib_with_idl, portableserver {
  sharedname   = Test_Server_Module
  dynamicflags = 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): taoexe {
  IDL_Files {
  }

  Source_Files {
    client.cpp
  }
}