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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# This script requires cmake, and 7z to be already on the path devenv should be on the path as
# a result of installing Visual Studio
Set-PSDebug -strict
$ErrorActionPreference='Stop'
if ($args.length -lt 1) {
Write-Host 'Need to specify location of qpid src tree'
exit
}
$qpid_src=$args[0]
$ver=$args[1]
if ($ver -eq $null) {
$qpid_version_file="$qpid_src\QPID_VERSION.txt"
if ( !(Test-Path $qpid_version_file)) {
Write-Host "Path doesn't seem to be a qpid src tree (no QPID_VERSION.txt)"
exit
}
$ver=Get-Content $qpid_version_file
}
$randomness=[System.IO.Path]::GetRandomFileName()
$qpid_cpp_src="$qpid_src\cpp"
$install_dir="install_$randomness"
$preserve_dir="preserve_$randomness"
$zipfile="qpid-cpp-$ver.zip"
# This assumes Visual Studio 2008
cmake -G "Visual Studio 9 2008" "-DCMAKE_INSTALL_PREFIX=$install_dir" $qpid_cpp_src
# Need to build doxygen api docs separately as nothing depends on them
devenv qpid-cpp.sln /build "Release|Win32" /project docs-user-api
# Build both debug and release so we can ship both sets of libs
# (Do release after debug so that the release executables overwrite the
# debug executables)
devenv qpid-cpp.sln /build "Debug|Win32" /project INSTALL
devenv qpid-cpp.sln /build "Release|Win32" /project INSTALL
# This is kludgy until we have more than one entry as the array declaration syntax
# can't cope with just one nested array
$move1=('bin/boost/*','bin')
$move=@(0)
$move[0]=$move1
$preserve=(
'include/qpid/agent',
'include/qpid/amqp_0_10',
'include/qpid/management',
'include/qpid/messaging',
'include/qpid/sys/IntegerTypes.h',
'include/qpid/sys/windows/IntegerTypes.h', 'include/qpid/sys/posix/IntegerTypes.h',
'include/qpid/types',
'include/qpid/CommonImportExport.h')
$remove=(
'bin/qpidd.exe', 'bin/qpidbroker*.*',
'bin/qmfengine*.*', 'bin/qpidxarm*.*',
'bin/boost_regex*.*', 'bin/boost*.lib',
'bin/boost',
'conf',
'examples/direct',
'examples/failover',
'examples/fanout',
'examples/messaging/drain.cpp',
'examples/messaging/spout.cpp',
'examples/messaging/messaging_drain.vcproj',
'examples/messaging/messaging_spout.vcproj',
'examples/pub-sub',
'examples/qmf-console',
'examples/request-response',
'examples/tradedemo',
'examples/old-examples.sln',
'examples/README.*',
'examples/verify*',
'include',
'plugins')
# Move some files around in the install tree
foreach ($pattern in $move) {
$target = Join-Path $install_dir $pattern[1]
$tparent = Split-Path -parent $target
New-Item -force -type directory $tparent
Move-Item -force -path "$install_dir/$($pattern[0])" -destination "$install_dir/$($pattern[1])"
}
# Copy aside the files to preserve
New-Item -path $preserve_dir -type directory
foreach ($pattern in $preserve) {
$target = Join-Path $preserve_dir $pattern
$tparent = Split-Path -parent $target
New-Item -force -type directory $tparent
Move-Item -force -path "$install_dir/$pattern" -destination "$preserve_dir/$pattern"
}
# Remove everything to remove
foreach ($pattern in $remove) {
Remove-Item -recurse "$install_dir/$pattern"
}
# Copy back the preserved things
foreach ($pattern in $preserve) {
$target = Join-Path $install_dir $pattern
$tparent = Split-Path -parent $target
New-Item -force -type directory $tparent
Move-Item -force -path "$preserve_dir/$pattern" -destination "$install_dir/$pattern"
}
Remove-Item -recurse $preserve_dir
# It would be very good to cut down on the shipped boost include files too, ideally by
# starting with the qpid files and recursively noting all boost headers actually needed
# Create a new zip
if (Test-Path $zipfile) {Remove-Item $zipfile}
&'7z' a $zipfile ".\$install_dir\*"
# Remove temporary install area
# Remove-Item -recurse $install_dir
|