summaryrefslogtreecommitdiff
path: root/CIAO/examples/BasicSP/BMDevice/BMDevice.mpc
blob: 90212cc63ecaded7843c8cb1c73f45ebffd8ca7b (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
// $Id$

project(BMDevice_DnC_stub): ciao_client_dnc {
  avoids += ace_for_tao
  after += BasicSP_DnC_stub
  sharedname = BMDevice_stub

  idlflags += -Wb,stub_export_macro=BMDEVICE_STUB_Export -Wb,stub_export_include=BMDevice_stub_export.h -Wb,skel_export_macro=BMDEVICE_SVNT_Export -Wb,skel_export_include=BMDevice_svnt_export.h
  libpaths += ..
  libs += BasicSP_stub
  dynamicflags   = BMDEVICE_STUB_BUILD_DLL

  IDL_Files {
    BMDevice.idl
  }

  Source_Files {
    BMDeviceC.cpp
  }
}

project(BMDevice_DnC_svnt) : ciao_servant_dnc {
  avoids += ace_for_tao
  after += BMDevice_DnC_stub BasicSP_DnC_stub
  sharedname  = BMDevice_svnt
  libs    += BMDevice_stub BasicSP_stub BasicSP_svnt
  libpaths += ..
  idlflags  +=  -Wb,export_macro=BMDEVICE_SVNT_Export -Wb,export_include=BMDevice_svnt_export.h
  dynamicflags = BMDEVICE_SVNT_BUILD_DLL

  CIDL_Files {
    BMDevice.cidl
  }

  IDL_Files {
    BMDeviceE.idl
  }

  Source_Files {
    BMDeviceEC.cpp
    BMDeviceS.cpp
    BMDevice_svnt.cpp
  }
}


project(BMDevice_DnC_exec) : ciao_component_dnc {
  avoids += ace_for_tao
  after += BMDevice_DnC_svnt
  sharedname = BMDevice_exec
  libs      += BMDevice_stub BMDevice_svnt BasicSP_stub BasicSP_svnt
  libpaths += ..
  idlflags  +=  -Wb,export_macro=BMDEVICE_EXEC_Export -Wb,export_include=BMDevice_exec_export.h
  dynamicflags   = BMDEVICE_EXEC_BUILD_DLL

  IDL_Files {
    BMDeviceEI.idl
  }

  Source_Files {
    BMDeviceES.cpp
    BMDeviceEIC.cpp
    BMDeviceEIS.cpp
    BMDevice_exec.cpp
  }
}