Skip to content

Commit 0a6b4b6

Browse files
committed
Update readme and comments
1 parent 936f49f commit 0a6b4b6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-release-dll.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Automated 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

55
Releases 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
```
1010
cd path\to\libcurl
1111
del 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
1313
tar -xf libcurl.zip
1414
```

0 commit comments

Comments
 (0)