blob: 34ed08c935917e3fa871cc3d227d9de5db7e9b3a (
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
|
// -*- MPC -*-
// $Id$
project(*Test_Client_Module): taolib_with_idl, anytypecode {
sharedname = Test_Client_Module
dynamicflags = TEST_CLIENT_MODULE_BUILD_DLL
Source_Files {
TestC.cpp
Test_Client_Module.cpp
}
}
project(*Test_Server_Module) : taolib_with_idl, portableserver {
sharedname = Test_Server_Module
dynamicflags = TEST_SERVER_MODULE_BUILD_DLL
after += *Test_CLient_Module
Source_Files {
Test_Server_Module.cpp
Test_i.cpp
}
}
project(*Server) : taoexe {
exename = server
IDL_Files {
}
Source_Files {
server.cpp
}
}
project(*Client): taoexe {
IDL_Files {
}
Source_Files {
client.cpp
}
}
|