diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2018-01-19 16:26:30 -0800 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-01-19 16:26:30 -0800 |
| commit | 55415f920077be653dfa79d8cf3db4c3a8cfd937 (patch) | |
| tree | b32e9de25a3b72c97f52d43393354d17ceac1d08 /ports/boost-vcpkg-helpers | |
| parent | b7b61e917fb62dcf1f4f7444cd34109431633446 (diff) | |
| download | vcpkg-55415f920077be653dfa79d8cf3db4c3a8cfd937.tar.gz vcpkg-55415f920077be653dfa79d8cf3db4c3a8cfd937.zip | |
[boost-asio] Added openssl as a dependency since most users will want it
Diffstat (limited to 'ports/boost-vcpkg-helpers')
| -rw-r--r-- | ports/boost-vcpkg-helpers/generate-ports.ps1 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ports/boost-vcpkg-helpers/generate-ports.ps1 b/ports/boost-vcpkg-helpers/generate-ports.ps1 index 62cfe5cc2..0b186caa4 100644 --- a/ports/boost-vcpkg-helpers/generate-ports.ps1 +++ b/ports/boost-vcpkg-helpers/generate-ports.ps1 @@ -22,7 +22,7 @@ function Generate() $sanitizedName = $name -replace "_","-"
$versionsuffix = ""
- if ($Name -eq "test" -or $Name -eq "python")
+ if ($Name -eq "test" -or $Name -eq "python" -or $Name -eq "asio")
{
$versionsuffix = "-1"
}
@@ -325,6 +325,10 @@ foreach ($library in $libraries) {
$deps += @("zlib", "bzip2")
}
+ elseif ($library -eq "asio")
+ {
+ $deps += @("openssl")
+ }
Generate `
-Name $library `
|
