freebsd-dev/contrib/libfido2/windows/release.ps1

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

98 lines
3.3 KiB
PowerShell
Raw Normal View History

2023-04-26 16:37:20 +00:00
# Copyright (c) 2021 Yubico AB. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
$ErrorActionPreference = "Stop"
$Architectures = @('x64', 'Win32', 'ARM64', 'ARM')
$InstallPrefixes = @('Win64', 'Win32', 'ARM64', 'ARM')
$Types = @('dynamic', 'static')
$Config = 'Release'
2023-04-26 16:38:17 +00:00
$LibCrypto = '47'
$SDK = '143'
2023-04-26 16:37:20 +00:00
. "$PSScriptRoot\const.ps1"
foreach ($Arch in $Architectures) {
foreach ($Type in $Types) {
./build.ps1 -Arch ${Arch} -Type ${Type} -Config ${Config}
}
}
foreach ($InstallPrefix in $InstallPrefixes) {
foreach ($Type in $Types) {
New-Item -Type Directory `
"${OUTPUT}/pkg/${InstallPrefix}/${Config}/v${SDK}/${Type}"
}
}
Function Package-Headers() {
Copy-Item "${OUTPUT}\x64\dynamic\include" -Destination "${OUTPUT}\pkg" `
-Recurse -ErrorAction Stop
}
Function Package-Dynamic(${SRC}, ${DEST}) {
Copy-Item "${SRC}\bin\cbor.dll" "${DEST}"
Copy-Item "${SRC}\lib\cbor.lib" "${DEST}"
Copy-Item "${SRC}\bin\zlib1.dll" "${DEST}"
Copy-Item "${SRC}\lib\zlib.lib" "${DEST}"
Copy-Item "${SRC}\bin\crypto-${LibCrypto}.dll" "${DEST}"
Copy-Item "${SRC}\lib\crypto-${LibCrypto}.lib" "${DEST}"
Copy-Item "${SRC}\bin\fido2.dll" "${DEST}"
Copy-Item "${SRC}\lib\fido2.lib" "${DEST}"
}
Function Package-Static(${SRC}, ${DEST}) {
Copy-Item "${SRC}/lib/cbor.lib" "${DEST}"
Copy-Item "${SRC}/lib/zlib.lib" "${DEST}"
Copy-Item "${SRC}/lib/crypto-${LibCrypto}.lib" "${DEST}"
Copy-Item "${SRC}/lib/fido2_static.lib" "${DEST}/fido2.lib"
}
Function Package-PDBs(${SRC}, ${DEST}) {
2023-04-26 16:38:17 +00:00
Copy-Item "${SRC}\${LIBRESSL}\crypto\crypto_obj.dir\${Config}\crypto_obj.pdb" `
2023-04-26 16:37:20 +00:00
"${DEST}\crypto-${LibCrypto}.pdb"
Copy-Item "${SRC}\${LIBCBOR}\src\cbor.dir\${Config}\vc${SDK}.pdb" `
"${DEST}\cbor.pdb"
Copy-Item "${SRC}\${ZLIB}\zlib.dir\${Config}\vc${SDK}.pdb" `
"${DEST}\zlib.pdb"
Copy-Item "${SRC}\src\fido2_shared.dir\${Config}\vc${SDK}.pdb" `
"${DEST}\fido2.pdb"
}
2023-04-26 16:38:17 +00:00
Function Package-StaticPDBs(${SRC}, ${DEST}) {
Copy-Item "${SRC}\${LIBRESSL}\crypto\Release\crypto-${LibCrypto}.pdb" `
"${DEST}\crypto-${LibCrypto}.pdb"
Copy-Item "${SRC}\${LIBCBOR}\src\Release\cbor.pdb" `
"${DEST}\cbor.pdb"
Copy-Item "${SRC}\${ZLIB}\Release\zlibstatic.pdb" `
"${DEST}\zlib.pdb"
Copy-Item "${SRC}\src\Release\fido2_static.pdb" `
"${DEST}\fido2.pdb"
}
2023-04-26 16:37:20 +00:00
Function Package-Tools(${SRC}, ${DEST}) {
Copy-Item "${SRC}\tools\${Config}\fido2-assert.exe" `
"${DEST}\fido2-assert.exe"
Copy-Item "${SRC}\tools\${Config}\fido2-cred.exe" `
"${DEST}\fido2-cred.exe"
Copy-Item "${SRC}\tools\${Config}\fido2-token.exe" `
"${DEST}\fido2-token.exe"
}
Package-Headers
for ($i = 0; $i -lt $Architectures.Length; $i++) {
$Arch = $Architectures[$i]
$InstallPrefix = $InstallPrefixes[$i]
Package-Dynamic "${OUTPUT}\${Arch}\dynamic" `
"${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\dynamic"
Package-PDBs "${BUILD}\${Arch}\dynamic" `
"${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\dynamic"
Package-Tools "${BUILD}\${Arch}\dynamic" `
"${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\dynamic"
Package-Static "${OUTPUT}\${Arch}\static" `
"${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\static"
2023-04-26 16:38:17 +00:00
Package-StaticPDBs "${BUILD}\${Arch}\static" `
"${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\static"
2023-04-26 16:37:20 +00:00
}