Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Smart_Proxies / Collocation / SP_Collocation.mpc
blob181d2678d7398348585d9e23c5dfe93dd6abfc15
1 // -*- MPC -*-
2 project(*idl): taoidldefaults, smart_proxies {
3   idlflags     += -Wb,stub_export_macro=MY_Stub_Export -Wb,stub_export_include=stub_export.h -Wb,skel_export_macro=Diamond_Export -Wb,skel_export_include=diamond_export.h -Gd
5   IDL_Files {
6     Diamond.idl
7   }
8   custom_only = 1
11 project(*TestStubsLib): taolib_with_idl, smart_proxies {
12   after        += *idl
14   sharedname = Coll_Test_Stubs
15   dynamicflags += MY_STUB_BUILD_DLL
17   Source_Files {
18     DiamondC.cpp
19     Smart_Proxy_Impl.cpp
20   }
21   IDL_Files {
22   }
25 project(*DiamondLib) : taolib_with_idl, smart_proxies, portableserver {
26   after        += *idl
27   after        += *TestStubsLib
29   sharedname   = Diamond
30   dynamicflags += DIAMOND_BUILD_DLL
32   libs         += Coll_Test_Stubs
34   Source_Files {
35     Diamond_i.cpp
36     DiamondS.cpp
37   }
38   IDL_Files {
39   }
42 project(*Test): taoexe, smart_proxies, portableserver, strategies {
43   after += *idl
44   after += *TestStubsLib *DiamondLib
45   libs  += Coll_Test_Stubs Diamond
46   Source_Files {
47     Coll_Tester.cpp
48     main.cpp
49   }
50   IDL_Files {
51   }