summaryrefslogtreecommitdiff
path: root/TAO/tests/DLL_ORB/DLL_ORB.mpc
blob: f7eb4ab959721a790517156c43d64cd4e1cc221d (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, anytypecode {
  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
  }
}