mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Try to fix MSW build error
This commit is contained in:
parent
78c93ee0fb
commit
0acc659676
@ -12,6 +12,12 @@ $BIN_DIR = "$BUILD_ROOT/out/bin/"
|
||||
|
||||
$VCPKG_INSTALL_ROOT = "$BUILD_ROOT/vcpkg_installed"
|
||||
|
||||
# Attempt to load System.Drawing.Common to avoid runtime errors
|
||||
try {
|
||||
Add-Type -AssemblyName System.Drawing.Common -ErrorAction Stop | Out-Null
|
||||
} catch {
|
||||
}
|
||||
|
||||
cmake --install $BUILD_ROOT
|
||||
|
||||
Get-ChildItem -Path $PROJECT_ROOT -Recurse -Filter *.pdb | Where-Object { $_.FullName -notmatch 'build/out/bin' } | ForEach-Object {
|
||||
|
Loading…
x
Reference in New Issue
Block a user