summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/examples/Hello/Base/Hello_Base.mpc
blob: f05f8d92225f4d216ead33d9fc0886fa7e1baf41 (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
// $Id$

project(DDS_Hello_Base_idl_gen) : taoidldefaults, anytypecode {
  avoids += ace_for_tao
  custom_only = 1
  idlflags -= -St -Sa
  idlflags += -SS -Gxhst \
              -Wb,stub_export_macro=HELLO_BASE_STUB_Export \
              -Wb,stub_export_include=Hello_Base_stub_export.h

  IDL_Files {
    Hello_Base.idl
  }
}

project(DDS_Hello_Base_ndds_ts_gen) : ndds_ts_defaults {
  avoids += ace_for_tao
  custom_only = 1
  after += DDS_Hello_Base_idl_gen

  NDDSTypeSupport_Files {
    Hello_Base.idl
  }
}

project(DDS_Hello_Base_NDDS_TS) : nddslib, taolib {
  avoids += ace_for_tao
  after  += DDS_Hello_Base_ndds_ts_gen DDS_Hello_Base_stub
  libs   += DDS_Hello_Base_stub
  libout = ../lib
  libpaths    += ../lib
  sharedname = DDS_Hello_Base_NDDS_TS
  dynamicflags = NDDS_USER_DLL_EXPORT

  verbatim(gnuace, macros) {
    override no_hidden_visibility = 1
  }

  Source_Files {
    Hello_Base.cxx
    Hello_BasePlugin.cxx
    Hello_BaseSupport.cxx
  }

  Header_Files {
    Hello_Base.h
    Hello_BasePlugin.h
    Hello_BaseSupport.h
  }

  Inline_Files {
  }
}

project(DDS_Hello_Base_stub) : ccm_stub {
  avoids += ace_for_tao
  after  += DDS_Hello_Base_idl_gen
  libs   +=
  libout = ../lib
  sharedname = DDS_Hello_Base_stub
  dynamicflags   = HELLO_BASE_STUB_BUILD_DLL

  IDL_Files {
  }

  Source_Files {
    Hello_BaseC.cpp
  }

  Header_Files {
    Hello_BaseC.h
    Hello_Base_stub_export.h
  }

  Inline_Files {
    Hello_BaseC.inl
  }
}