diff options
Diffstat (limited to 'modules/CIAO/performance-tests/Benchmark/Benchmark.mpc')
-rw-r--r-- | modules/CIAO/performance-tests/Benchmark/Benchmark.mpc | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/modules/CIAO/performance-tests/Benchmark/Benchmark.mpc b/modules/CIAO/performance-tests/Benchmark/Benchmark.mpc new file mode 100644 index 00000000000..cdaa1adf905 --- /dev/null +++ b/modules/CIAO/performance-tests/Benchmark/Benchmark.mpc @@ -0,0 +1,98 @@ +// $Id$ +// This file is generated with "generate_component_mpc.pl -n -c server Benchmark" + +project(Benchmark_idl_gen) : componentidldefaults { + custom_only = 1 + idlflags += -Wb,stub_export_macro=BENCHMARK_STUB_Export \ + -Wb,stub_export_include=Benchmark_stub_export.h \ + -Wb,skel_export_macro=BENCHMARK_SKEL_Export \ + -Wb,skel_export_include=Benchmark_skel_export.h + + IDL_Files { + Benchmark.idl + } +} + +project(Benchmark_lem_gen) : ciaoidldefaults, anytypecode { + after += Benchmark_idl_gen + custom_only = 1 + idlflags += -Wb,stub_export_macro=BENCHMARK_STUB_Export \ + -Wb,stub_export_include=Benchmark_stub_export.h -SS + + IDL_Files { + BenchmarkE.idl + } +} + +project(Benchmark_stub) : ccm_stub { + after += Benchmark_lem_gen + libs += + + sharedname = Benchmark_stub + dynamicflags = BENCHMARK_STUB_BUILD_DLL + + IDL_Files { + } + + Source_Files { + BenchmarkEC.cpp + BenchmarkC.cpp + } + + Header_Files { + BenchmarkC.h + Benchmark_stub_export.h + } + + Inline_Files { + BenchmarkC.inl + } +} + + +project(Benchmark_skel) : ciao_executor { + after += Benchmark_stub + sharedname = Benchmark_skel + libs += Benchmark_stub + + + dynamicflags = BENCHMARK_SKEL_BUILD_DLL + + IDL_Files { + } + + Source_Files { + BenchmarkS.cpp + } + + Header_Files { + BenchmarkS.h + Benchmark_skel_export.h + } + + Inline_Files { + BenchmarkS.inl + } +} + +project (Benchmark_server) : taoserver, strategies, ciao_executor { + exename = server + after += Benchmark_skel + libs += Benchmark_skel Benchmark_stub Benchmark_stub + + IDL_Files { + } + + Source_Files { + server.cpp + LatencyTest.cpp + } + + Header_Files { + LatencyTest.h + } + + Inline_Files { + } +} + |