blob: e28065757439a956924c31e9f4937456240ec9f3 (
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
|
// -*- MPC -*-
// $Id$
project(*idl): taoidldefaults {
dynamicflags += CURRENT_TEST_BUILD_DLL
idlflags += -Wb,export_include=Current_Test_Export.h \
-Wb,export_macro=Current_Test_Export
IDL_Files {
Current_Test.idl
}
custom_only = 1
}
project(*Client): tc {
after += *idl
includes += .
dynamicflags += CURRENT_TEST_BUILD_DLL
Source_Files {
Client_Request_Interceptor.cpp
Client_ORBInitializer.cpp
}
Source_Files {
Current_TestC.cpp
}
IDL_Files {
}
}
project(*Server): tc, pi_server {
after += *idl
includes += .
dynamicflags += CURRENT_TEST_BUILD_DLL
Source_Files {
Server_Request_Interceptor.cpp
Server_ORBInitializer.cpp
}
Source_Files {
Current_TestC.cpp
Current_TestS.cpp
}
IDL_Files {
}
}
|