2024-05-09 04:35:55 +00:00
|
|
|
if not exist "build" mkdir "build"
|
|
|
|
cd build
|
2024-10-22 23:31:18 +00:00
|
|
|
git clone https://github.com/bitcoin-core/secp256k1
|
2024-05-09 04:35:55 +00:00
|
|
|
cd secp256k1
|
2024-10-22 23:59:02 +00:00
|
|
|
git checkout 68b55209f1ba3e6c0417789598f5f75649e9c14c
|
|
|
|
git reset --hard
|
2024-10-22 23:31:18 +00:00
|
|
|
cmake -G "Visual Studio 17 2022" -A x64 -S . -B build
|
2024-05-09 04:35:55 +00:00
|
|
|
cd build
|
2024-10-22 23:31:18 +00:00
|
|
|
cmake --build .
|
2024-05-09 04:35:55 +00:00
|
|
|
if not exist "..\..\..\..\build\" mkdir "..\..\..\..\build\"
|
2024-10-22 23:31:18 +00:00
|
|
|
xcopy bin\Debug\libsecp256k1-2.dll "..\..\..\..\build\secp256k1.dll" /Y
|
2024-10-22 23:59:02 +00:00
|
|
|
cd ..\..\..\
|