summaryrefslogtreecommitdiff
path: root/CIAO/tests/Bug_2130_Regression/SEC_CheckPoint/TSEC_CheckPoint.mpc
blob: 8de487816bb5be324102ec78ab218bb0037ab3a4 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
//$Id$

project(TSEC_CheckPoint_stub): ciao_client_dnc, event {
  avoids += ace_for_tao
  after  += ENW_stub
  libpaths += ../interfaces
  libs     += ENW_stub
  sharedname = TSEC_CheckPoint_stub
  idlflags -= -GT
  idlflags += -St \
              -Wb,stub_export_macro=TSEC_CHECKPOINT_STUB_Export \
              -Wb,stub_export_include=TSEC_CheckPoint_stub_export.h \
              -Wb,skel_export_macro=TSEC_CHECKPOINT_SVNT_Export \
              -Wb,skel_export_include=TSEC_CheckPoint_svnt_export.h
  dynamicflags   = TSEC_CHECKPOINT_STUB_BUILD_DLL

  IDL_Files {
    TSEC_CheckPoint.idl
  }

  Source_Files {
    TSEC_CheckPointC.cpp
  }
}

project(TSEC_CheckPoint_svnt) : ciao_servant_dnc, event {
  avoids += ace_for_tao
  after +=  TSEC_CheckPoint_stub
  after +=  ENW_skel ENW_stub
  sharedname  = TSEC_CheckPoint_svnt
  libpaths += ../interfaces
  libs     += TSEC_CheckPoint_stub
  libs     += ENW_stub ENW_skel

  idlflags -= -GT
  idlflags  +=  -SS -St \
                -Wb,export_macro=TSEC_CHECKPOINT_SVNT_Export \
                -Wb,export_include=TSEC_CheckPoint_svnt_export.h
  dynamicflags = TSEC_CHECKPOINT_SVNT_BUILD_DLL

  CIDL_Files {
    TSEC_CheckPoint.cidl
  }

  IDL_Files {
    TSEC_CheckPointE.idl
  }

  Source_Files {
    TSEC_CheckPointEC.cpp
    TSEC_CheckPointS.cpp
    TSEC_CheckPoint_svnt.cpp
  }
}


project(TSEC_CheckPoint_exec) : ciao_component_dnc, event, ciao_server_dnc {
  avoids += ace_for_tao
  after   += TSEC_CheckPoint_svnt
  after   += ENW_skel ENW_stub

  includes   += ../interfaces

  sharedname = TSEC_CheckPoint_exec
  libpaths  += ../interfaces
  libs      += TSEC_CheckPoint_stub TSEC_CheckPoint_svnt
  libs      += ENW_stub ENW_skel

  idlflags  -= -GT
  idlflags  +=  -SS -St \
                -Wb,export_macro=TSEC_CHECKPOINT_EXEC_Export \
                -Wb,export_include=TSEC_CheckPoint_exec_export.h
  dynamicflags   = TSEC_CHECKPOINT_EXEC_BUILD_DLL

  IDL_Files {
    TSEC_CheckPointEI.idl
  }

  Source_Files {
    TSEC_CheckPointEIC.cpp
    TSEC_CheckPoint_exec.cpp
  }
}


project(TSEC_CheckPoint_controller) : ciao_client_dnc, valuetype, event {
  avoids += ace_for_tao
  exename = controller
  after += TSEC_CheckPoint_stub
  libs += TSEC_CheckPoint_stub ENW_stub
  libpaths += ../interfaces

  IDL_Files {
  }

  Source_Files {
    controller.cpp
  }
}