From b4610fb5b0ca0d79f51f2f4257d407ef0b9a414c Mon Sep 17 00:00:00 2001 From: sneurlax Date: Tue, 22 Oct 2024 18:31:18 -0500 Subject: [PATCH] move 'rem's from native windows secp256k1 build script and adjust path --- scripts/windows/build_secp256k1.bat | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/windows/build_secp256k1.bat b/scripts/windows/build_secp256k1.bat index 9e7433032..bcabe1c7f 100644 --- a/scripts/windows/build_secp256k1.bat +++ b/scripts/windows/build_secp256k1.bat @@ -1,10 +1,10 @@ if not exist "build" mkdir "build" cd build -rem git clone https://github.com/bitcoin-core/secp256k1 +git clone https://github.com/bitcoin-core/secp256k1 cd secp256k1 -rem cmake -G "Visual Studio 17 2022" -A x64 -S . -B build +cmake -G "Visual Studio 17 2022" -A x64 -S . -B build cd build -rem cmake --build . +cmake --build . if not exist "..\..\..\..\build\" mkdir "..\..\..\..\build\" -xcopy src\Debug\libsecp256k1-2.dll "..\..\..\..\build\secp256k1.dll" /Y -cd ..\..\..\ +xcopy bin\Debug\libsecp256k1-2.dll "..\..\..\..\build\secp256k1.dll" /Y +cd ..\..\..\ \ No newline at end of file