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

project(DDS_Hello_Base_idl_gen) : taoidldefaults, anytypecode {
  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   {
  custom_only = 1
  after += DDS_Hello_Base_idl_gen
  ndds_ts_flags += -corba Hello_BaseC.h -orb ACE_TAO1.7

  NDDSTypeSupport_Files {
    Hello_Base.idl
  }
}

project(DDS_Hello_Base_NDDS_TS) : nddslib, taolib {
  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

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