File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ jobs:
129129 $target_dir = "$staging_dir\$arch\Release"
130130 New-Item -ItemType Directory -Force -Path $target_dir | Out-Null
131131
132- # Copy all DLLs (libcurl.dll + runtime dependencies like zlib1.dll ) into the Release folder
132+ # Copy all DLLs (only libcurl.dll since we are building standalone ) into the Release folder
133133 if (Test-Path "$vcpkg_dir\installed\$vcpkg_triplet\bin\*.dll") {
134134 Copy-Item -Path "$vcpkg_dir\installed\$vcpkg_triplet\bin\*.dll" -Destination "$target_dir\" -Force
135135 }
Original file line number Diff line number Diff line change 11Automated builds of ** libcurl** using vcpkg.
22
3- Compiled as completely standalone Dynamic Libraries (.dll) with the Static C Runtime (` /MT ` ) with Control Flow Guard enabled.
3+ Compiled as completely standalone dynamic libraries (.dll) using the Static C Runtime (/MT) with Control Flow Guard (CFG) enabled.
44
55Releases contain ` libcurl.dll ` formatted in a ` $arch\Release\ ` directory structure.
66
@@ -9,6 +9,6 @@ To obtain the latest release in a build environment:
99```
1010cd path\to\libcurl
1111del libcurl.zip
12- curl -LJO https://github.com/cjee21 /libcurl-Windows/releases/latest/download/libcurl.zip
12+ curl -LJO https://github.com/MediaArea /libcurl-Windows/releases/latest/download/libcurl.zip
1313tar -xf libcurl.zip
1414```
You can’t perform that action at this time.
0 commit comments