Skip to content

Commit cb444bf

Browse files
committed
fix(windows): write DLLs to scripts/windows/build/ to match CMakeLists expectations
The plugin's windows/CMakeLists.txt checks for libstdc++-6.dll at scripts/windows/build/ and the parent stack_wallet CMakeLists installs libmwc_wallet.dll from the same directory. download.sh was incorrectly writing to windows/libs/ instead, causing cmake_install to exit code 1 (MSB3073) because the source file did not exist.
1 parent d74b89b commit cb444bf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/windows/download.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ download_and_verify() {
2323
grep "^[0-9a-f]* ${asset}$" "$TMPDIR/checksums.txt" | (cd "$TMPDIR" && sha256sum -c)
2424
}
2525

26-
WINLIBS="$LIB_ROOT/windows/libs"
26+
WINLIBS="$LIB_ROOT/scripts/windows/build"
2727
mkdir -p "$WINLIBS"
2828

2929
download_and_verify "libmwc_wallet-windows-x86_64.dll"

0 commit comments

Comments
 (0)