forked from ForNeVeR/tdlib.native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.windows.ps1
51 lines (44 loc) · 947 Bytes
/
build.windows.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
param (
$td = "$PSScriptRoot/td",
$Platform = 'x64-windows',
[Parameter(Mandatory = $true)] $VcpkgToolchain
)
$ErrorActionPreference = 'Stop'
if (-not (Test-Path $td/build)) {
New-Item -Type Directory $td/build
}
Push-Location $td/build
try {
$vcpkgArguments = @(
'install'
"openssl:$platform"
"zlib:$platform"
)
$cmakeArguments = @(
"-DCMAKE_TOOLCHAIN_FILE=$VcpkgToolchain"
'..'
)
$cmakeBuildArguments = @(
'--build'
'.'
'--config'
'Release'
)
if ($Platform -eq 'x64-windows') {
$cmakeArguments += @('-A', 'X64')
}
vcpkg $vcpkgArguments
if (!$?) {
throw 'Cannot execute vcpkg'
}
cmake $cmakeArguments
if (!$?) {
throw 'Cannot execute cmake'
}
cmake $cmakeBuildArguments
if (!$?) {
throw 'Cannot execute cmake --build'
}
} finally {
Pop-Location
}