summaryrefslogtreecommitdiff
path: root/CIAO/examples/BasicSP/BMDisplay/BMDisplay.mpc
blob: 195b9bd3544e2bf0660830a997d2c591e69abe05 (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
122
123
124
125
126
127
128
// $Id$

project(BMDisplay_stub_gen): taoidldefaults,anytypecode {
  custom_only = 1
  idlflags += -I $(CIAO_ROOT)/examples/BasicSP
  idlflags += -Wb,stub_export_macro=BMDISPLAY_STUB_Export
  idlflags += -Wb,stub_export_include=BMDisplay_stub_export.h
  idlflags += -Wb,skel_export_macro=BMDISPLAY_SVNT_Export
  idlflags += -Wb,skel_export_include=BMDisplay_svnt_export.h

  IDL_Files {
    BMDisplay.idl
  }
}

project(BMDisplay_lem_gen) : ciaocidldefaults, taoidldefaults {
  after += BasicSP_lem_gen
  custom_only = 1
  cidlflags -= --
  cidlflags += -I $(CIAO_ROOT)/examples/BasicSP --

  idlflags += -I $(CIAO_ROOT)/examples/BasicSP
  idlflags  +=  -Wb,export_macro=BMDISPLAY_EXEC_Export \
                -Wb,export_include=BMDisplay_exec_export.h \
                -SS

  CIDL_Files {
    BMDisplay.cidl
  }

  IDL_Files {
    BMDisplayE.idl
  }

}
project(BMDisplay_stub): ciao_client_dnc {
  after += BasicSP_stub BMDisplay_stub_gen
  sharedname = BMDisplay_stub
  includes += $(CIAO_ROOT)/examples/BasicSP

  libs += BasicSP_stub

  dynamicflags   = BMDISPLAY_STUB_BUILD_DLL

  IDL_Files {
  }

  Header_Files {
    BMDisplayC.h
    BMDisplay_stub_export.h
  }

  Source_Files {
    BMDisplayC.cpp
  }

  Inline_Files {

  }

}



project(BMDisplay_exec) : ciao_component_dnc {
  after      += BMDisplay_stub BMDisplay_lem_gen

  sharedname = BMDisplay_exec
  libs       += BMDisplay_stub
  libs       += BasicSP_exec BasicSP_stub
  includes += $(CIAO_ROOT)/examples/BasicSP

  dynamicflags   = BMDISPLAY_EXEC_BUILD_DLL

  IDL_Files {

  }

  Header_Files {
    BMDisplay_exec.h
    BMDisplay_exec_export.h
    BMDisplayEC.h
  }

  Source_Files {
    BMDisplay_exec.cpp
    BMDisplayEC.cpp
  }

  Inline_Files {

  }

}


project(BMDisplay_svnt) : ciao_servant_dnc {
  after += BasicSP_svnt BMDisplay_exec
  includes += $(CIAO_ROOT)/examples/BasicSP

  sharedname = BMDisplay_svnt

  libs    += BMDisplay_stub BMDisplay_exec
  libs    += BasicSP_stub BasicSP_svnt
  dynamicflags = BMDISPLAY_SVNT_BUILD_DLL

  CIDL_Files {
  }

  IDL_Files {
  }

  Source_Files {
    BMDisplayS.cpp
    BMDisplay_svnt.cpp
  }

  Header_Files {
    BMDisplayS.h
    BMDisplay_svnt.h
    BMDisplay_svnt_export.h
  }

  Inline_Files {

  }

}