forked from WebKitForWindows/WebKitRequirements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild-RequirementSource.ps1
219 lines (192 loc) · 5.51 KB
/
Build-RequirementSource.ps1
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<#
.Synopsis
Builds all the source code for required for building WebKit.
.Details
Invokes the CMake build for all the required projects.
.Parameter Root
The root directory to download source to. Defaults to current directory.
.Parameter InstallPath
The directory to install the built files to.
.Parameter BuildType
The type of build to run.
.Parameter Platform
The build platform corresponding to CMAKE_SYSTEM_NAME.
#>
Param(
[Parameter()]
[string] $root = '.',
[Parameter()]
[string] $installPath = 'dist',
[Parameter()]
[string] $buildPath = 'build',
[Parameter()]
[ValidateSet('Release','Debug')]
[string] $buildType = 'Release',
[Parameter()]
[ValidateSet('ninja','vs2015','vs2017')]
[string] $generator = 'ninja',
[Parameter()]
[string] $platform = 'Windows'
)
#----------------------------------------------------------------------
# nghttp2 options
#----------------------------------------------------------------------
$nghttp2Options = @(
# ENABLE options
'-DENABLE_APP=OFF',
'-DENABLE_ASIO_LIB=OFF',
'-DENABLE_EXAMPLES=OFF',
'-DENABLE_FAILMALLOC=OFF',
'-DENABLE_HPACK_TOOLS=OFF',
'-DENABLE_PYTHON_BINDINGS=OFF',
'-DENABLE_THREADS=OFF',
'-DENABLE_WERROR=OFF',
# WITH options
'-DWITH_JEMALLOC=OFF',
'-DWITH_LIBXML2=OFF',
'-DWITH_MRUBY=OFF',
'-DWITH_NEVERBLEED=OFF',
'-DWITH_SPDYLAY=OFF'
);
#----------------------------------------------------------------------
# curl options
#----------------------------------------------------------------------
$curlOptions = @(
# BUILD options
'-DBUILD_CURL_EXE=OFF',
'-DBUILD_TESTING=OFF',
# CMAKE options
'-DCMAKE_USE_GSSAPI=OFF',
'-DCMAKE_USE_LIBSSH2=OFF',
'-DCMAKE_USE_OPENLDAP=OFF',
'-DCMAKE_USE_OPENSSL=ON',
# CURL options
'-DCURL_DISABLE_COOKIES=ON',
'-DCURL_DISABLE_CRYPTO_AUTH=OFF',
'-DCURL_DISABLE_DIST=ON',
'-DCURL_DISABLE_FILE=OFF',
'-DCURL_DISABLE_FTP=ON',
'-DCURL_DISABLE_GOPHER=ON',
'-DCURL_DISABLE_HTTP=OFF',
'-DCURL_DISABLE_IMAP=ON',
'-DCURL_DISABLE_LDAP=ON',
'-DCURL_DISABLE_LDAPS=ON',
'-DCURL_DISABLE_POP3=ON',
'-DCURL_DISABLE_PROXY=OFF',
'-DCURL_DISABLE_RTSP=ON',
'-DCURL_DISABLE_SMTP=ON',
'-DCURL_DISABLE_TELNET=ON',
'-DCURL_DISABLE_TFTP=ON',
# ENABLE options
'-DENABLE_ARES=OFF',
'-DENABLE_IPV6=OFF',
'-DENABLE_MANUAL=OFF',
'-DENABLE_THREADED_RESOLVER=ON',
# USE options
'-DUSE_NGHTTP2=ON',
'-DUSE_WIN32_LDAP=OFF'
);
#----------------------------------------------------------------------
# libxml2 options
#----------------------------------------------------------------------
$libxml2Options = @(
# Threading
'-DLIBXML_THREAD_SAFETY=no',
'-DWITH_THREAD_ALLOC=OFF',
# Options
'-DWITH_C14N=OFF',
'-DWITH_CATALOG=OFF',
'-DWITH_DEBUG=OFF',
'-DWITH_DOCB=OFF',
'-DWITH_FTP=OFF',
'-DWITH_FTP=OFF',
'-DWITH_HTML=OFF',
'-DWITH_HTTP=OFF',
'-DWITH_ICONV=OFF',
'-DWITH_ICU=ON',
'-DWITH_ISO8859X=ON',
'-DWITH_LEGACY=OFF',
'-DWITH_MEM_DEBUG=OFF',
'-DWITH_MODULES=OFF',
'-DWITH_OUTPUT=ON',
'-DWITH_PATTERN=OFF',
'-DWITH_PUSH=ON',
'-DWITH_PYTHON=OFF',
'-DWITH_READER=OFF',
'-DWITH_REGEXPS=ON',
'-DWITH_RUN_DEBUG=OFF',
'-DWITH_SAX1=ON',
'-DWITH_SCHEMAS=OFF',
'-DWITH_SCHEMATRON=OFF',
'-DWITH_TREE=OFF',
'-DWITH_VALID=OFF',
'-DWITH_WALKER=ON',
'-DWITH_WRITER=OFF',
'-DWITH_XINCLUDE=OFF',
'-DWITH_XPATH=OFF',
'-DWITH_XPTR=OFF',
'-DWITH_ZLIB=OFF'
);
#----------------------------------------------------------------------
# Build function
#----------------------------------------------------------------------
Function Build-Requirement {
Param(
[Parameter(Mandatory)]
[string] $name,
[Parameter()]
[string[]] $options = @()
)
$sourcePath = Join-Path $root $name;
$requirementBuildPath = Join-Path $buildPath $name;
if (!(Test-Path $sourcePath)) {
Write-Host ('Source code for {0} not present at {1}' -f $name, $destinationPath);
return;
}
$args = @{
Path = $sourcePath;
BuildPath = $requirementBuildPath;
Generator = $generator;
BuildType = $buildType;
InstallationPath = $installPath;
Options = $options;
#Platform = $platform;
}
Invoke-CMakeBuild @args;
}
#----------------------------------------------------------------------
# Build all
#
# Ordered based on dependencies
#----------------------------------------------------------------------
if (!(Test-Path $root)) {
Write-Error ('Source code root at {0} not found' -f $root);
return;
}
$root = (Resolve-Path -Path $root).Path;
Write-Host ('Building source code in {0}' -f $root);
if (!(Test-Path $buildPath)) {
Write-Host ('Creating build directory at {0}' -f $buildPath);
New-Item $buildPath -Type directory;
}
$buildPath = (Resolve-Path -Path $buildPath).Path;
Write-Host ('Building source code at {0}' -f $buildPath);
if (!(Test-Path $installPath)) {
Write-Host ('Creating install directory at {0}' -f $installPath);
New-Item $installPath -Type directory;
}
$installPath = (Resolve-Path -Path $installPath).Path;
Write-Host ('Installing libraries at {0}' -f $installPath);
Build-Requirement -Name 'zlib';
Build-Requirement -Name 'libressl';
Build-Requirement -Name 'nghttp2' -Options $nghttp2Options;
Build-Requirement -Name 'curl' -Options $curlOptions;
#Build-Requirement -Name 'icu';
Build-Requirement -Name 'libxml2' -Options $libxml2Options;
Build-Requirement -Name 'libpng';
Build-Requirement -Name 'libjpeg-turbo';
Build-Requirement -Name 'libwebp';
Build-Requirement -Name 'sqlite';
#Build-Requirement -Name 'freetype';
Build-Requirement -Name 'pixman';
Build-Requirement -Name 'cairo';