summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocation/Collocation.mpc
blob: 2bb76c43a8022c9b5591fa3ceeaef7c15bc50273 (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
// -*- MPC -*-
// $Id$

project(*Test Stub): taolib_with_idl {
  sharedname   = Collocation_Test_Stub
  idlflags    += -Wb,skel_export_macro=Diamond_Export \
                 -Wb,stub_export_macro=MY_Stub_Export \
                 -Wb,skel_export_include=diamond_export.h \
                 -Wb,stub_export_include=stub_export.h \
                 -Gd -St -Sa
  dynamicflags = MY_STUB_BUILD_DLL

  Source_Files {
    DiamondC.cpp
  }
}

project(*Diamond) : taolib_with_idl, portableserver {
  after       += Collocation_Test_Stub
  sharedname   = Collocation_Diamond
  libs        += Collocation_Test_Stub
  idlflags    += -Wb,skel_export_macro=Diamond_Export \
                 -Wb,stub_export_macro=MY_Stub_Export \
                 -Wb,skel_export_include=diamond_export.h \
                 -Wb,stub_export_include=stub_export.h \
                 -Gd -St -Sa
  dynamicflags = DIAMOND_BUILD_DLL

  Source_Files {
    Diamond_i.cpp
    DiamondS.cpp
  }
}

project(*Server) : taoserver, strategies {
  after   += Collocation_Test_Stub Collocation_Diamond
  libs    += Collocation_Test_Stub Collocation_Diamond
  exename  = Collocation
  IDL_Files {
  }

  Source_Files {
    Collocation_Tester.cpp
    Collocation.cpp
  }
}