blob: 4218665fd3b96a8a109509a088d34a382e7a5247 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// -*- MPC -*-
// $Id$
project(*Server): taoserver, anytypecode, exceptions {
idlflags = -Ge 0 -Sc -Sa -St
Source_Files {
test_i.cpp
server.cpp
}
}
project(*Client): taoclient, anytypecode, exceptions {
idlflags = -Ge 0 -Sc -Sa -St
after += *Server
Source_Files {
testC.cpp
client.cpp
}
}
|