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
|
param(
[string] $BuildDir = 'C:\Projects\build',
[string] $ProjectDir = $null,
[string] $Platform = $null,
[string] $Configuration = $null,
[string] $BoostDir = $null,
[string] $BoostLibraryDir = $null,
[bool] $UseAsm = $false
)
$ErrorActionPreference = "Stop";
function Invoke-Exe {
param(
[ScriptBlock] $Cmd,
[int[]] $AllowedExitCodes = @(0)
)
$backupErrorActionPreference = $script:ErrorActionPreference
$script:ErrorActionPreference = 'Continue'
try {
& $Cmd
if ($AllowedExitCodes -notcontains $LastExitCode) {
throw "External command failed with exit code ${LastExitCode}: $Cmd"
}
} finally {
$script:ErrorActionPreference = $backupErrorActionPreference
}
}
function Test-AppVeyor {
return Test-Path env:APPVEYOR
}
function Format-AppVeyorBoostDir {
return "boost_" + $env:appveyor_boost_version.replace('.', '_')
}
function Get-AppVeyorBoostDir {
return "C:\Libraries\$(Format-AppVeyorBoostDir)"
}
function Get-AppVeyorBoostLibraryDir {
param(
[string] $Platform = $env:PLATFORM
)
$BoostDir = Get-AppVeyorBoostDir
if ($Platform -eq 'x64') {
return "$BoostDir\lib64-msvc-14.1"
} else {
return "$BoostDir\lib32-msvc-14.1"
}
}
function Build-Project {
param(
[Parameter(Mandatory=$true)]
[string] $ProjectDir,
[Parameter(Mandatory=$true)]
[string] $BuildDir,
[Parameter(Mandatory=$true)]
[string] $Platform,
[Parameter(Mandatory=$true)]
[string] $Configuration,
[Parameter(Mandatory=$true)]
[string] $BoostDir,
[string] $BoostLibraryDir = $null,
[bool] $UseAsm = $false
)
if (-not $BoostLibraryDir) {
$BoostLibraryDir = "$BoostDir\stage\lib"
}
if ($UseAsm) {
$cmake_asm = 'ON'
} else {
$cmake_asm = 'OFF'
}
mkdir $BuildDir
cd $BuildDir
Invoke-Exe { cmake -Wno-dev `
-G "Visual Studio 15 2017" -A $Platform `
-D "AES_TOOLS_ASM=$cmake_asm" `
-D "BOOST_ROOT=$BoostDir" `
-D "BOOST_LIBRARYDIR=$BoostLibraryDir" `
-D Boost_USE_STATIC_LIBS=ON `
-D Boost_USE_STATIC_RUNTIME=ON `
$ProjectDir
}
Invoke-Exe { cmake --build . --config "$Configuration" -- /m }
}
if (Test-AppVeyor) {
$cwd = pwd
$ProjectDir = $env:APPVEYOR_BUILD_FOLDER
$BuildDir = 'C:\Projects\build'
$Platform = $env:PLATFORM
$Configuration = $env:CONFIGURATION
$BoostDir = Get-AppVeyorBoostDir
$BoostLibraryDir = Get-AppVeyorBoostLibraryDir -Platform $Platform
$UseAsm = -not ($env:appveyor_asm -eq '0')
}
Build-Project `
-ProjectDir $ProjectDir `
-BuildDir $BuildDir `
-Platform $Platform `
-Configuration $Configuration `
-BoostDir $BoostDir `
-BoostLibraryDir $BoostLibraryDir `
-UseAsm $UseAsm
if (Test-AppVeyor) {
cd $cwd
}
|