blob: 2928894d3fc1e10c73bc56d343dff6549f7b9fe2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
Qpid-Cpp-Win-Sdk
================
Table of Contents
=================
1. Introduction
2. Prerequisites
3. Kit contents
4. Building dotnet_examples
5. Notes
1. Introduction
===============
Qpid-Cpp-Win-Sdk is a software development kit for users who wish
to write code using the Qpid-Cpp program libraries in a Windows
environment.
This kit is distributed as two zip files:
qpid-cpp-x86-<version>.zip - projects and libraries for 32-bit
x86 and Win32 development.
qpid-cpp-x64-<version>.zip - projects and libraries for 64-bit
x64 development.
For additional software or information on the Qpid project go to:
http://cwiki.apache.org/qpid/
2. Prerequisites
================
A. Visual Studio 2008. This kit was produced by Visual Studio 2008
and example solutions and projects are in Visual Studio 2008
format.
B. MSVC 9.0 runtime libraries. Copies of the MSVC90 redistributable
runtime libraries and manifest are included in the /bin directory.
C. Boost version 1_39. The Boost libraries required by this SDK are
included in the /bin directory. Both Debug and Release variants
are present.
3. Kit contents
===============
The kit directories hold the content described here.
\bin
The precompiled binary (.dll and .exe) files and
the associated debug program database (.pdb) files.
Boost library files.
MSVC90 runtime library files.
\include
A directory tree of .h files.
\lib
The linker .lib files that correspond to files in /bin.
\docs
Apache Qpid C++ API Reference
\examples
A Visual Studio solution file and associated project files
to demonstrate using this SDK in C++.
\dotnet_examples
A Visual Studio solution file and associated project files
to demonstrate using this SDK in C#.
\management
A python scripting code set for generating QMF data structures.
For more information on Qpid QMF go to:
https://cwiki.apache.org/qpid/qpid-management-framework.html
4. Building dotnet_examples
===========================
From the \dotnet_examples directory launch the winsdk_dotnet_examples.sln
solution file. In the platform pulldown list select "x86" or "x64" to
match the development kit you are using. Then build the solution in the
Debug configuration.
The resulting executable programs may be run from within Visual Studio
or stand-alone from the \bin directory.
5. Notes
========
* Only the Release variant of Qpid code uses the redistributable
MSVC90 libraries in the /bin directory. Users who wish to link to
the Debug variant of Qpid code may do so under their own copy of
Visual Studio 2008 where the debug versions of MSVC90 runtime
libraries are available.
* The dotnet_examples are only available in the Debug configuration.
|