summaryrefslogtreecommitdiff
path: root/modules/CIAO/tests/Bug_2130_Regression/interfaces/ENW.mpc
blob: 940fc9213217534727c7938c507dead1ba7ff74c (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
//$Id$

project(ENW_stub): ccm_stub, event {
  sharedname = ENW_stub
  idlflags -= -GT
  idlflags += -Wb,stub_export_macro=ENW_STUB_Export \
              -Wb,stub_export_include=ENW_stub_export.h \
              -Wb,skel_export_macro=ENW_SKEL_Export \
              -Wb,skel_export_include=ENW_skel_export.h
  dynamicflags = ENW_STUB_BUILD_DLL

  IDL_Files {
    ENW.idl
  }

  Source_Files {
    ENWC.cpp
  }
}

project(ENW_skel) : ciao_servant, event {
  after +=  ENW_stub
  sharedname  = ENW_skel
  libs    += ENW_stub
  idlflags -= -GT
  idlflags += -Wb,stub_export_macro=ENW_STUB_Export \
              -Wb,stub_export_include=ENW_stub_export.h \
              -Wb,skel_export_macro=ENW_SKEL_Export \
              -Wb,skel_export_include=ENW_skel_export.h

  dynamicflags = ENW_SKEL_BUILD_DLL

  IDL_Files {
    ENW.idl
  }

  Source_Files {
    ENWS.cpp
  }
}