summaryrefslogtreecommitdiff
path: root/Monitor/Central_Monitor/Monitor.mpc
blob: 3e3971cb271348f98572400fe38281da09af3336 (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
project(Monitor_stub): ciao_client_dnc {

  sharedname = Monitor_stub
  idlflags += -Wb,stub_export_macro=MONITOR_STUB_Export \
              -Wb,stub_export_include=Monitor_stub_export.h \
              -Wb,skel_export_macro=MONITOR_SVNT_Export \
              -Wb,skel_export_include=Monitor_svnt_export.h
  dynamicflags   = MONITOR_STUB_BUILD_DLL

  IDL_Files {
    Monitor.idl
  }

  Source_Files {
    MonitorC.cpp
  }
}

project(Monitor_svnt) : ciao_servant_dnc {
  after +=  Monitor_stub
  sharedname  = Monitor_svnt
  libs    += Monitor_stub

  idlflags  +=  -Wb,export_macro=MONITOR_SVNT_Export \
                -Wb,export_include=Monitor_svnt_export.h
  dynamicflags = MONITOR_SVNT_BUILD_DLL

//  cidlflags -= --

//  cidlflags += -gen-exec-impl --

  CIDL_Files {
    Monitor.cidl
  }

  IDL_Files {
    MonitorE.idl
  }

  Source_Files {
    MonitorEC.cpp
    MonitorS.cpp
    Monitor_svnt.cpp
  }
}


project(Monitor_exec) : ciao_component_dnc {
  after   += Monitor_svnt
  sharedname = Monitor_exec
  libs      += Monitor_stub Monitor_svnt

  idlflags  +=  -Wb,export_macro=MONITOR_EXEC_Export \
                -Wb,export_include=Monitor_exec_export.h
  dynamicflags   = MONITOR_EXEC_BUILD_DLL

  IDL_Files {

  }

  Source_Files {

    Monitor_exec.cpp
  }
}