-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
68 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
vcpkg_from_github( | ||
OUT_SOURCE_PATH SOURCE_PATH | ||
REPO Azure/azure-sdk-for-cpp | ||
REF ebf958df2349afb82d32d4aff995f3736629af2f | ||
SHA512 fa616916ea5758b143ae3a5219d1f5e43545b4137e2f8dcd4f67fec9523d4584a4b77d738846bd8b2e264d8608e6bc23335a3a963d1c01f9fb62950b0a52fe25 | ||
) | ||
|
||
if(EXISTS "${SOURCE_PATH}/sdk/template/azure-template") | ||
file(REMOVE_RECURSE "${SOURCE_PATH}/sdk/template/_") | ||
file(REMOVE_RECURSE "${SOURCE_PATH}/sdk/_") | ||
file(REMOVE_RECURSE "${SOURCE_PATH}/_") | ||
|
||
file(RENAME "${SOURCE_PATH}/sdk/template/azure-template" "${SOURCE_PATH}/sdk/template/_") | ||
file(RENAME "${SOURCE_PATH}/sdk/template" "${SOURCE_PATH}/sdk/_") | ||
file(RENAME "${SOURCE_PATH}/sdk" "${SOURCE_PATH}/_") | ||
endif() | ||
|
||
vcpkg_cmake_configure( | ||
SOURCE_PATH "${SOURCE_PATH}/_/_/_" | ||
OPTIONS | ||
-DWARNINGS_AS_ERRORS=OFF | ||
-DBUILD_TESTING=OFF | ||
) | ||
|
||
vcpkg_cmake_install() | ||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") | ||
vcpkg_cmake_config_fixup() | ||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") | ||
vcpkg_copy_pdbs() |
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,26 @@ | ||
{ | ||
"name": "azure-template-cpp", | ||
"version-semver": "1.1.0-beta.3117641", | ||
"description": [ | ||
"Microsoft Azure Template SDK for C++", | ||
"This is a template library meant to illustrate initial client library development process for Azure SDK.", | ||
"It is not meant to be published to vcpkg." | ||
], | ||
"homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/main/sdk/template/azure-template", | ||
"license": "MIT", | ||
"dependencies": [ | ||
{ | ||
"name": "azure-core-cpp", | ||
"default-features": false, | ||
"version>=": "1.3.1" | ||
}, | ||
{ | ||
"name": "vcpkg-cmake", | ||
"host": true | ||
}, | ||
{ | ||
"name": "vcpkg-cmake-config", | ||
"host": true | ||
} | ||
] | ||
} |
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,9 @@ | ||
{ | ||
"versions": [ | ||
{ | ||
"git-tree": "b06d8e894d57c0a57278ea813ef3f46b6ae1d364", | ||
"version-semver": "1.1.0-beta.3117641", | ||
"port-version": 0 | ||
} | ||
] | ||
} |
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