Skip to content

Commit

Permalink
Add all libs for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lexiforest committed Jan 27, 2025
1 parent 6abe07e commit 6755fd5
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,17 @@ def get_curl_archives():

def get_curl_libraries():
if arch["system"] == "Windows":
return ["libcurl"]
return [
"libcurl",
"zstd",
"zlib",
"ssl",
"nghttp2",
"crypto",
"brotlienc",
"brotlidec",
"brotlicommon",
]
elif arch["system"] == "Darwin" or (
arch["system"] == "Linux" and arch.get("link_type") == "dynamic"
):
Expand Down

0 comments on commit 6755fd5

Please sign in to comment.