From 3a4d8a82ea6e9cd405ac7d480fd8b70b1aaf76ab Mon Sep 17 00:00:00 2001 From: Ted Ross Date: Mon, 30 Aug 2010 19:38:31 +0000 Subject: QPID-2827 - QPID Cpp WinSDK does not contain 64-bit libraries Patch from Chuck Rolke * Adds the x64 platform to the cpp\example solution and six example projects. * Adds the x64 platform to the qpid messaging .NET binding dlls and examples. * Adds QPID_BUILD_ROOT environment variable to .NET binding projects for locating C++ libraries and headers, and for storing generated output. This is required to compensate for the varying location of cmake-generated directories. For a given build QPID_BUILD_ROOT must be set to the directory in which cmake was run. * Reorganize the bld-winsdk.ps1 script to build x86 (Win32) and x64 platforms. * Update Readme-winsdk.txt content. Also switch this file to DOS line endings to improve its usability on a Windows system. * Add a shadow solution file and shadow project files for the C# examples. The new build process copies the development example source tree to get the example sources organized into a hierarchy and then overlays the copied tree with the shadow .sln and .csproj files. Users then build the examples directly using the customized solution. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@990917 13f79535-47bb-0310-9956-ffa450edef68 --- .../csharp.example.client.csproj | 24 ++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) (limited to 'cpp/bindings/qpid/dotnet/examples/csharp.example.client/csharp.example.client.csproj') diff --git a/cpp/bindings/qpid/dotnet/examples/csharp.example.client/csharp.example.client.csproj b/cpp/bindings/qpid/dotnet/examples/csharp.example.client/csharp.example.client.csproj index 76fb1c5e19..5618ac5996 100644 --- a/cpp/bindings/qpid/dotnet/examples/csharp.example.client/csharp.example.client.csproj +++ b/cpp/bindings/qpid/dotnet/examples/csharp.example.client/csharp.example.client.csproj @@ -17,7 +17,7 @@ true full false - ..\..\..\..\..\src\Debug\ + $(QPID_BUILD_ROOT)\src\$(Configuration)\ DEBUG;TRACE prompt 4 @@ -25,27 +25,43 @@ pdbonly true - ..\..\..\..\..\src\Release\ + $(QPID_BUILD_ROOT)\src\$(Configuration)\ TRACE prompt 4 true - ..\..\..\..\..\src\Debug\ + $(QPID_BUILD_ROOT)\src\$(Configuration)\ DEBUG;TRACE full x86 prompt - ..\..\..\..\..\src\Release\ + $(QPID_BUILD_ROOT)\src\$(Configuration)\ TRACE true pdbonly x86 prompt + + true + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + DEBUG;TRACE + full + x64 + prompt + + + $(QPID_BUILD_ROOT)\src\$(Configuration)\ + TRACE + true + pdbonly + x64 + prompt + -- cgit v1.2.1