summaryrefslogtreecommitdiff
path: root/TAO/tests/DLL_ORB/DLL_ORB.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/DLL_ORB/DLL_ORB.mpc')
-rw-r--r--TAO/tests/DLL_ORB/DLL_ORB.mpc44
1 files changed, 44 insertions, 0 deletions
diff --git a/TAO/tests/DLL_ORB/DLL_ORB.mpc b/TAO/tests/DLL_ORB/DLL_ORB.mpc
new file mode 100644
index 00000000000..4785a6eb897
--- /dev/null
+++ b/TAO/tests/DLL_ORB/DLL_ORB.mpc
@@ -0,0 +1,44 @@
+project(Test Client Module): taolib_with_idl {
+ sharedname = Test_Client_Module
+ libs += TAO
+ idlflags += -Wb,pre_include=ace/pre.h -Wb,post_include=ace/post.h
+ dllflags = TEST_CLIENT_MODULE_BUILD_DLL
+
+ Source_Files {
+ TestC.cpp
+ Test_Client_Module.cpp
+ }
+}
+
+project(Test Server Module) : taolib_with_idl {
+ depends += PortableServer
+ sharedname = Test_Server_Module
+ libs += TAO_PortableServer TAO
+ idlflags += -Wb,pre_include=ace/pre.h -Wb,post_include=ace/post.h
+ dllflags = TEST_SERVER_MODULE_BUILD_DLL
+
+ Source_Files {
+ Test_Server_Module.cpp
+ Test_i.cpp
+ }
+}
+
+project(server) : taoexe {
+ exename = server
+ IDL_Files {
+ }
+
+ Source_Files {
+ server.cpp
+ }
+}
+
+project : client {
+ IDL_Files {
+ }
+
+ Source_Files {
+ client.cpp
+ }
+}
+