summaryrefslogtreecommitdiff
path: root/tests/Oneway_Timeouts/test.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Oneway_Timeouts/test.mpc')
-rw-r--r--tests/Oneway_Timeouts/test.mpc42
1 files changed, 26 insertions, 16 deletions
diff --git a/tests/Oneway_Timeouts/test.mpc b/tests/Oneway_Timeouts/test.mpc
index cf7dcc95795..3f3e7cd6050 100644
--- a/tests/Oneway_Timeouts/test.mpc
+++ b/tests/Oneway_Timeouts/test.mpc
@@ -1,28 +1,38 @@
// -*- MPC -*-
// $Id$
-project (*client) : taoserver, messaging, strategies {
- exename = client
- after = *server
- source_files {
- TestC.cpp
- client.cpp
+project(*idl): taoidldefaults {
+ idlflags += -Sp
+ IDL_Files {
+ Test.idl
+ }
+ custom_only = 1
+}
+
+project(*Server): taoserver, messaging, strategies {
+ after += *idl
+ Source_Files {
+ server.cpp
}
- header_files {
- TestC.h
+ Source_Files {
+ TestC.cpp
+ TestS.cpp
}
- idl_files {
+ IDL_Files {
}
}
-project (*server) : taoserver, messaging, strategies {
- source_files {
+project(*Client): taoserver, messaging, strategies {
+ exename = client
+ after += *idl
+ Source_Files {
+ client.cpp
+ }
+ Source_Files {
TestC.cpp
- TestS.cpp
- server.cpp
}
- header_files {
- TestS.h
- TestC.h
+ IDL_Files {
}
}
+
+