summaryrefslogtreecommitdiff
path: root/CIAO/examples/space/Gizmo1_Low/Gizmo1_Low.mpc
blob: cc74f0d295858b44fa622eb431c0573c64dad013 (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
project(Gizmo1_Low_stub): ciao_client_dnc {

  sharedname = Gizmo1_Low_stub
  libs    += Event_Types_stub
  after += Event_Types_stub
  includes += ../common
  idlflags += -Wb,stub_export_macro=GIZMO1_LOW_STUB_Export \
              -Wb,stub_export_include=Gizmo1_Low_stub_export.h \
              -Wb,skel_export_macro=GIZMO1_LOW_SVNT_Export \
              -Wb,skel_export_include=Gizmo1_Low_svnt_export.h \
              -I ../common

  dynamicflags   = GIZMO1_LOW_STUB_BUILD_DLL

  IDL_Files {
    Gizmo1_Low.idl
  }

  Source_Files {
    Gizmo1_LowC.cpp
  }
}

project(Gizmo1_Low_svnt) : ciao_servant_dnc {
  after +=  Gizmo1_Low_stub
  sharedname  = Gizmo1_Low_svnt
  libs    += Gizmo1_Low_stub Event_Types_stub
  includes += ../common

  idlflags  +=  -Wb,export_macro=GIZMO1_LOW_SVNT_Export \
                -Wb,export_include=Gizmo1_Low_svnt_export.h \
                -I ../common

  dynamicflags = GIZMO1_LOW_SVNT_BUILD_DLL

  cidlflags -= --
  cidlflags +=  -I ../common --

  CIDL_Files {
    Gizmo1_Low.cidl
  }

  IDL_Files {
    Gizmo1_LowE.idl
  }

  Source_Files {
    Gizmo1_LowEC.cpp
    Gizmo1_LowS.cpp
    Gizmo1_Low_svnt.cpp
  }
}


project(Gizmo1_Low_exec) : ciao_component_dnc {
  after   += Gizmo1_Low_svnt
  sharedname = Gizmo1_Low_exec
  libs      += Gizmo1_Low_stub Gizmo1_Low_svnt Event_Types_stub
  includes += ../common

  idlflags  +=  -Wb,export_macro=GIZMO1_LOW_EXEC_Export \
                -Wb,export_include=Gizmo1_Low_exec_export.h

  dynamicflags   = GIZMO1_LOW_EXEC_BUILD_DLL

  IDL_Files {

  }

  Source_Files {

    Gizmo1_Low_exec.cpp
  }
}