summaryrefslogtreecommitdiff
path: root/TAO/tests/DSI_Gateway/DSI_Gateway.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/DSI_Gateway/DSI_Gateway.mpc')
-rw-r--r--TAO/tests/DSI_Gateway/DSI_Gateway.mpc31
1 files changed, 31 insertions, 0 deletions
diff --git a/TAO/tests/DSI_Gateway/DSI_Gateway.mpc b/TAO/tests/DSI_Gateway/DSI_Gateway.mpc
new file mode 100644
index 00000000000..18a78155025
--- /dev/null
+++ b/TAO/tests/DSI_Gateway/DSI_Gateway.mpc
@@ -0,0 +1,31 @@
+project: messaging {
+ depends += Dynamic_Interface
+ libs += TAO_DynamicInterface
+
+ Source_Files {
+ test_i.cpp
+ server.cpp
+ }
+}
+
+project(client): messaging {
+ exename = client
+ depends += Dynamic_Interface
+ libs += TAO_DynamicInterface
+
+ Source_Files {
+ testC.cpp
+ client.cpp
+ }
+}
+
+project(gateway): messaging {
+ exename = gateway
+ depends += Dynamic_Interface
+ libs += TAO_DynamicInterface
+
+ Source_Files {
+ test_dsi.cpp
+ gateway.cpp
+ }
+}