blob: 59cb34c414d8fdd78ec63374e35a54b0c5dc1893 (
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
|
// $Id$
project(Benchmark_stub): ciao_client_dnc {
avoids += ace_for_tao
sharedname = Benchmark_stub
idlflags += -Wb,stub_export_macro=BENCHMARK_STUB_Export -Wb,stub_export_include=Benchmark_stub_export.h -Wb,skel_export_macro=BENCHMARK_SVNT_Export -Wb,skel_export_include=Benchmark_svnt_export.h
dynamicflags = BENCHMARK_STUB_BUILD_DLL
IDL_Files {
Benchmark.idl
}
Source_Files {
BenchmarkC.cpp
}
}
project(Benchmark_svnt) : ciao_component_dnc {
avoids += ace_for_tao
after += Benchmark_stub
sharedname = Benchmark_svnt
libs += Benchmark_stub
idlflags += -Wb,export_macro=BENCHMARK_SVNT_Export -Wb,export_include=Benchmark_svnt_export.h
dynamicflags = BENCHMARK_SVNT_BUILD_DLL
IDL_Files {
}
Source_Files {
BenchmarkS.cpp
}
}
project (*server) : taoserver, strategies,ciao_component_dnc {
avoids += ace_for_tao
after += Benchmark_svnt
libs += Benchmark_svnt Benchmark_stub
Source_Files {
server.cpp
LatencyTest.cpp
BenchmarkEC.cpp
BenchmarkES.cpp
}
IDL_Files {
BenchmarkE.idl
}
}
|