summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/tests/RTCosScheduling/RTCosScheduling.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/orbsvcs/tests/RTCosScheduling/RTCosScheduling.mpc')
-rw-r--r--trunk/TAO/orbsvcs/tests/RTCosScheduling/RTCosScheduling.mpc48
1 files changed, 48 insertions, 0 deletions
diff --git a/trunk/TAO/orbsvcs/tests/RTCosScheduling/RTCosScheduling.mpc b/trunk/TAO/orbsvcs/tests/RTCosScheduling/RTCosScheduling.mpc
new file mode 100644
index 00000000000..08b932cb774
--- /dev/null
+++ b/trunk/TAO/orbsvcs/tests/RTCosScheduling/RTCosScheduling.mpc
@@ -0,0 +1,48 @@
+// -*- MPC -*-
+// $Id$
+
+project(RTCosScheduling_Server): rtcosscheduling, rt_server, orbsvcsexe, interceptors {
+ after += commonlib
+ libs += testSched_Common
+ libpaths += .
+ exename = server
+
+ Source_Files {
+ Object1_i.cpp
+ server.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(RTCosScheduling_Client): rtcosscheduling, rt_client, orbsvcsexe {
+ after += commonlib
+ after += RTCosScheduling_Server
+ libs += testSched_Common
+ libpaths += .
+ exename = client
+
+ Source_Files {
+ client.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(commonlib): rtcosscheduling, orbsvcslib {
+ requires += interceptors
+ sharedname = testSched_Common
+ idlflags += -Wb,export_macro=testSched_Export \
+ -Wb,export_include=testSched_export.h
+
+ dynamicflags += TESTSCHED_BUILD_DLL
+ tagchecks += testSched_Common
+
+ IDL_Files {
+ testSched.idl
+ }
+ Source_Files {
+ testSchedC.cpp
+ testSchedS.cpp
+ }
+}