summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/examples/Large_Deployment/Common/Single_Service_Common.mpc
blob: f9c67fc69e7f3019db8008b7596ed8bb711f9d29 (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
// $Id$

project(Single_Service_Common_idl_gen) : taoidldefaults {
  custom_only = 1
  idlflags += -Wb,stub_export_macro=SINGLE_SERVICE_COMMON_STUB_Export \
              -Wb,stub_export_include=Single_Service_Common_stub_export.h \
              -Wb,skel_export_macro=SINGLE_SERVICE_COMMON_SKEL_Export \
              -Wb,skel_export_include=Single_Service_Common_skel_export.h \
              -Gxhst -Gxhsk -Gsv -Glem

  IDL_Files {
    Single_Service_Common.idl
  }
}

project(Single_Service_Common_idl_lem_gen) : ciaoidldefaults {
  after += Single_Service_Common_idl_gen
  custom_only = 1
  idlflags += -Wb,stub_export_macro=SINGLE_SERVICE_COMMON_LEM_STUB_Export \
              -Wb,stub_export_include=Single_Service_Common_lem_stub_export.h \
              -SS -Gxhst -I..

  IDL_Files {
    Single_Service_CommonE.idl
  }
}

project(Single_Service_Common_lem_stub) : ccm_svnt   {
  after +=  Single_Service_Common_idl_lem_gen \
            Single_Service_Common_stub
  libs  +=  Single_Service_Common_stub

  libpaths += ../lib
  libout = ../lib

  sharedname = Single_Service_Common_lem_stub
  dynamicflags += SINGLE_SERVICE_COMMON_LEM_STUB_BUILD_DLL

  IDL_Files {
  }

  Source_Files {
    Single_Service_CommonEC.cpp
  }

  Header_Files {
    Single_Service_CommonEC.h
    Single_Service_Common_lem_stub_export.h
  }

  Inline_Files {
    Single_Service_CommonEC.inl
  }
}

project(Single_Service_Common_stub) : ccm_stub {
  after += Single_Service_Common_idl_gen

  libpaths += ../lib
  libout = ../lib

  sharedname = Single_Service_Common_stub
  dynamicflags += SINGLE_SERVICE_COMMON_STUB_BUILD_DLL

  IDL_Files {
  }

  Source_Files {
    Single_Service_CommonC.cpp
  }

  Header_Files {
    Single_Service_CommonC.h
    Single_Service_Common_stub_export.h
  }

  Inline_Files {
    Single_Service_CommonC.inl
  }
}

project(Single_Service_Common_skel) : ccm_svnt {
  after += Single_Service_Common_stub
  libs += Single_Service_Common_stub

  libpaths += ../lib
  libout = ../lib

  sharedname = Single_Service_Common_skel
  dynamicflags += SINGLE_SERVICE_COMMON_SKEL_BUILD_DLL

  IDL_Files {
  }

  Source_Files {
    Single_Service_CommonS.cpp
  }

  Header_Files {
    Single_Service_CommonS.h
    Single_Service_Common_skel_export.h
  }

  Inline_Files {
  }
}