summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/Supports/Supports_Test.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/OBV/Supports/Supports_Test.mpc')
-rw-r--r--TAO/tests/OBV/Supports/Supports_Test.mpc32
1 files changed, 32 insertions, 0 deletions
diff --git a/TAO/tests/OBV/Supports/Supports_Test.mpc b/TAO/tests/OBV/Supports/Supports_Test.mpc
new file mode 100644
index 00000000000..7d9df51c0b7
--- /dev/null
+++ b/TAO/tests/OBV/Supports/Supports_Test.mpc
@@ -0,0 +1,32 @@
+// $Id$
+
+project(*Server): taoserver, valuetype, strategies {
+ // This is just a dummy_label to prevent the test from being compiled
+ // in MPC builds
+ requires += dummy_label
+ Source_Files {
+ server.cpp
+ Supports_Test_impl.cpp
+ Supports_TestC.cpp
+ Supports_TestS.cpp
+ }
+ Header_Files {
+ Supports_Test_impl.h
+ Supports_TestC.h
+ Supports_TestS.h
+ }
+}
+
+project(*Client): taoclient, taoserver, valuetype {
+ exename = client
+ after += *Server
+ // This is just a dummy_label to prevent the test from being compiled
+ // in MPC builds
+ requires += dummy_label
+ Source_Files {
+ client.cpp
+ Supports_Test_impl.cpp
+ Supports_TestC.cpp
+ Supports_TestS.cpp
+ }
+}