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

project(ENW_stub): ciao_client_dnc, 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_dnc, 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
  }
}