summaryrefslogtreecommitdiff
path: root/TAO/tests/DLL_ORB/DLL_ORB.mpc
blob: 5c2f8dba9f62f087e18893d219b2c64e3b8031a8 (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
// -*- MPC -*-
project (*idl): taoidldefaults {
  IDL_Files {
    Test.idl
  }
  custom_only = 1
}

project(*Test_Client_Module): taolib_with_idl, anytypecode {
  after += *idl
  sharedname    = Test_Client_Module
  dynamicflags  = TEST_CLIENT_MODULE_BUILD_DLL

  Source_Files {
    TestC.cpp
    Test_Client_Module.cpp
  }
  IDL_Files {
  }
}

project(*Test_Server_Module) : taolib_with_idl, portableserver {
  after += *idl
  sharedname   = Test_Server_Module
  dynamicflags += TEST_SERVER_MODULE_BUILD_DLL
  after += *Test_CLient_Module

  Source_Files {
    Test_Server_Module.cpp
    TestS.cpp
    TestC.cpp
    Test_i.cpp
  }

  IDL_Files {
  }
}

project(*Server) : taoexe {
  after += *idl
  exename = server
  IDL_Files {
  }

  Source_Files {
    server.cpp
  }
}

project(*Client): taoclient {
  after += *idl
  IDL_Files {
  }

  Source_Files {
    client.cpp
  }
}