summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/examples/EC_Benchmark/Consumer/Consumer.mpc
blob: ca9bee0cc687687dc795b66af4ad6cf55d31c21d (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
// $Id$

project(Consumer_stub): ciao_client_dnc {
  after += EC_Benchmark_stub
  sharedname = Consumer_stub

  idlflags += -Wb,stub_export_macro=CONSUMER_STUB_Export -Wb,stub_export_include=Consumer_stub_export.h -Wb,skel_export_macro=CONSUMER_SVNT_Export -Wb,skel_export_include=Consumer_svnt_export.h
  libpaths += ..
  libs += EC_Benchmark_stub
  dynamicflags   = CONSUMER_STUB_BUILD_DLL

  IDL_Files {
    Consumer.idl
  }

  Source_Files {
    ConsumerC.cpp
  }
}

project(Consumer_svnt) : ciao_servant_dnc {
  after += EC_Benchmark_svnt Consumer_stub
  sharedname  = Consumer_svnt
  libs    += Consumer_stub EC_Benchmark_stub EC_Benchmark_svnt
  libpaths += ..
  idlflags  +=  -Wb,export_macro=CONSUMER_SVNT_Export -Wb,export_include=Consumer_svnt_export.h
  dynamicflags = CONSUMER_SVNT_BUILD_DLL

  CIDL_Files {
    Consumer.cidl
  }

  IDL_Files {
    ConsumerE.idl
  }

  Source_Files {
    ConsumerEC.cpp
    ConsumerS.cpp
    Consumer_svnt.cpp
  }
}


project(Consumer_exec) : ciao_component_dnc {
  after += Consumer_svnt
  sharedname = Consumer_exec
  libs      += Consumer_stub Consumer_svnt EC_Benchmark_stub EC_Benchmark_svnt
  libpaths += ..
  idlflags  +=  -Wb,export_macro=CONSUMER_EXEC_Export -Wb,export_include=Consumer_exec_export.h
  dynamicflags   = CONSUMER_EXEC_BUILD_DLL

  IDL_Files {
  }

  Source_Files {
    Consumer_exec.cpp
  }
}