forked from opensearch-project/sql
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…pensearch-project#696 and 317 all together. (opensearch-project#479) Signed-off-by: Yury Fridlyand <[email protected]>
- Loading branch information
1 parent
f2263e7
commit 646ce3c
Showing
5 changed files
with
54 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
$SRC_DIR = $args[0] | ||
$LIBCURL_WIN_ARCH = $args[1] | ||
|
||
if (!("${SRC_DIR}/packages/curl_${LIBCURL_WIN_ARCH}-windows" | Test-Path)) | ||
{ | ||
git clone https://github.com/Microsoft/vcpkg.git $SRC_DIR | ||
Set-Location $SRC_DIR | ||
cmd.exe /c bootstrap-vcpkg.bat | ||
.\vcpkg.exe integrate install | ||
.\vcpkg.exe install curl[tool]:${LIBCURL_WIN_ARCH}-windows | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters