summaryrefslogtreecommitdiff
path: root/modules/CIAO/tests/Bug_2130_Regression/SEC_CheckPoint/TSEC_CheckPoint.mpc
blob: 9e7a1102f55df6ebfc6f396f5bd2a24e51f07682 (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
//$Id$

project(TSEC_CheckPoint_idl_gen) : componentidldefaults {
  custom_only = 1
  idlflags += -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 \
              -Wb,exec_export_macro=TSEC_CHECKPOINT_EXEC_Export \
              -Wb,exec_export_include=TSEC_CheckPoint_exec_export.h \
              -Glfa
  requires += dummy_label

  IDL_Files {
    TSEC_CheckPoint.idl
  }
}

project(TSEC_CheckPoint_lem_gen) : ciaoidldefaults {
  custom_only = 1
  after += TSEC_CheckPoint_idl_gen
  idlflags  +=  -SS -St \
                -Wb,export_macro=TSEC_CHECKPOINT_EXEC_Export \
                -Wb,export_include=TSEC_CheckPoint_exec_export.h

  requires += dummy_label
  IDL_Files {
    TSEC_CheckPointE.idl
  }
}


project(TSEC_CheckPoint_stub): ccm_stub, event {
  after  += ENW_stub TSEC_CheckPoint_idl_gen
  libpaths += ../interfaces
  libs     += ENW_stub
  sharedname = TSEC_CheckPoint_stub
  dynamicflags   = TSEC_CHECKPOINT_STUB_BUILD_DLL
  requires += dummy_label
  IDL_Files {
  }

  Source_Files {
    TSEC_CheckPointC.cpp
  }

  Header_Files {
    TSEC_CheckPointC.h
    TSEC_CheckPoint_stub_export.h
  }

  Inline_Files {
    TSEC_CheckPointC.inl
  }
}

project(TSEC_CheckPoint_svnt) : ciao_servant, event {
  after +=  TSEC_CheckPoint_skel TSEC_CheckPoint_exec
  after +=  ENW_skel ENW_stub
  sharedname  = TSEC_CheckPoint_svnt
  libpaths += ../interfaces
  libs     += TSEC_CheckPoint_stub TSEC_CheckPoint_exec
  libs     += ENW_stub ENW_skel
  requires += dummy_label
  dynamicflags = TSEC_CHECKPOINT_SVNT_BUILD_DLL
  requires += dummy_label
  IDL_Files {
  }

  Source_Files {
    TSEC_CheckPointS.cpp
    TSEC_CheckPoint_svnt.cpp
  }
}


project(TSEC_CheckPoint_exec) : ciao_executor, event, ccm_svnt, ciao_session_container, naming {
  after   += TSEC_CheckPoint_stub TSEC_CheckPoint_lem_gen
  after   += ENW_skel ENW_stub
  requires += dummy_label
  includes  += ../interfaces

  sharedname = TSEC_CheckPoint_exec
  libpaths  += ../interfaces
  libs      += TSEC_CheckPoint_stub
  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_CheckPointEC.cpp
    TSEC_CheckPointEIC.cpp
    TSEC_CheckPoint_exec.cpp
  }
}


project(TSEC_CheckPoint_controller) : ccm_stub, valuetype, event {
  exename = controller
  after += TSEC_CheckPoint_stub
  libs += TSEC_CheckPoint_stub ENW_stub
  libpaths += ../interfaces
  requires += dummy_label
  IDL_Files {
  }

  Source_Files {
    controller.cpp
  }
}