summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/handcrafted/Display/GPS/GPS.mpc
blob: 38d9b3353eabbf64222fc9a519b56bf0c4aa50c8 (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

project(GPS_stub): ciao_client {
  depends += HUDisplay_stub
  sharedname = GPS_stub
  idlflags += -Wb,stub_export_macro=GPS_STUB_Export -Wb,stub_export_include=GPS_stub_export.h -Wb,skel_export_macro=GPS_SVNT_Export -Wb,skel_export_include=GPS_svnt_export.h
  dllflags   = GPS_STUB_BUILD_DLL

  IDL_Files {
    GPS.idl
  }

  Source_Files {
    GPSC.cpp
  }
}

project(GPS_svnt) : ciao_server {
  depends += HUDisplay_svnt GPS_stub
  sharedname  = GPS_svnt
  libs    += GPS_stub HUDisplay_stub
  libpaths += ..
  idlflags  +=  -Wb,export_macro=GPS_SVNT_Export -Wb,export_include=GPS_svnt_export.h
  dllflags = GPS_SVNT_BUILD_DLL

  IDL_Files {
    GPSE.idl
  }

  Source_Files {
    GPS_svnt.cpp
    GPSS.cpp
    GPSEC.cpp
  }
}


project(GPS_exec) : ciao_server {
  depends   += GPS_svnt
  sharedname = GPS_exec
  libs      += GPS_stub HUDisplay_stub GPS_svnt
  libpaths += ..
  dllflags   = GPS_EXEC_BUILD_DLL

  IDL_Files {
  }

  Source_Files {
    GPS_exec.cpp
  }
}