Skip to content

Commit

Permalink
Use secp256k1.dll as the windows library output
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewLM committed Jan 16, 2024
1 parent a813cfb commit 5119149
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coinlib/bin/build_windows_crosscompile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN make
# Build DLL and copy into output.
RUN make install
RUN mkdir output
RUN cp src/libsecp256k1.dll output/libsecp256k1.dll
RUN cp src/libsecp256k1.dll output/secp256k1.dll
""";

void main() async {
Expand All @@ -38,7 +38,7 @@ void main() async {
cmd,
dockerfile,
"coinlib_build_secp256k1_windows",
"output/libsecp256k1.dll",
"output/secp256k1.dll",
)) {
exit(1);
}
Expand Down

0 comments on commit 5119149

Please sign in to comment.