diff options
author | Phil Mesnier <mesnier_p@ociweb.com> | 2007-07-09 16:03:32 +0000 |
---|---|---|
committer | Phil Mesnier <mesnier_p@ociweb.com> | 2007-07-09 16:03:32 +0000 |
commit | e79e655e43db1d2ce41a5899c95fad267a6f7685 (patch) | |
tree | 7ceb4bcab887a7b9e8961495113590c26cf03341 /TAO/tests/DLL_ORB/DLL_ORB.mpc | |
parent | e51f28c7c826da7ce1327580b693a7ff1207a0a5 (diff) | |
download | ATCD-e79e655e43db1d2ce41a5899c95fad267a6f7685.tar.gz |
Mon Jul 9 15:40:40 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
Diffstat (limited to 'TAO/tests/DLL_ORB/DLL_ORB.mpc')
-rw-r--r-- | TAO/tests/DLL_ORB/DLL_ORB.mpc | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/TAO/tests/DLL_ORB/DLL_ORB.mpc b/TAO/tests/DLL_ORB/DLL_ORB.mpc index 982d155c7a3..234fdb4ccd2 100644 --- a/TAO/tests/DLL_ORB/DLL_ORB.mpc +++ b/TAO/tests/DLL_ORB/DLL_ORB.mpc @@ -1,7 +1,15 @@ // -*- MPC -*- // $Id$ +project (*idl): taoidldefaults { + IDL_Files { + Test.idl + } + custom_only = 1 +} + project(*Test_Client_Module): taolib_with_idl, anytypecode { + after += *idl sharedname = Test_Client_Module dynamicflags = TEST_CLIENT_MODULE_BUILD_DLL @@ -9,9 +17,12 @@ project(*Test_Client_Module): taolib_with_idl, anytypecode { TestC.cpp Test_Client_Module.cpp } + IDL_Files { + } } project(*Test_Server_Module) : taolib_with_idl, portableserver { + after += *idl sharedname = Test_Server_Module dynamicflags = TEST_SERVER_MODULE_BUILD_DLL after += *Test_CLient_Module @@ -20,9 +31,13 @@ project(*Test_Server_Module) : taolib_with_idl, portableserver { Test_Server_Module.cpp Test_i.cpp } + + IDL_Files { + } } project(*Server) : taoexe { + after += *idl exename = server IDL_Files { } @@ -33,6 +48,7 @@ project(*Server) : taoexe { } project(*Client): taoclient { + after += *idl IDL_Files { } @@ -40,4 +56,3 @@ project(*Client): taoclient { client.cpp } } - |