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

  IDL_Files {
    Single_Service_Common.idl
  }
}


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 {
  }
}