vcpkg/ports/azure-iot-sdk-c/portfile.cmake
Valerie Avva Lim 9c2ee2a7c5
[azure-iot-sdk-c] LTS Release 07-2022_Ref02 (#26361)
* update versions

* add patches

* fix ninja error

* update port versions

* fix linux build issues

* bot comment fixes

* update version

* add openssl override for c-utility

* format vcpkg.json file

* Update version database

* update licenses

* Update version database

* remove depracated portfile functions

* Update version database

* fix vcpkg_cmake_config_fixup arguments

* Update version database

* point to after openssl 3 support

* revert overrides

* add new openssl patch

* fix patches to work on linux

* update to actual release code

* update versions

* remove leftovers from trying to fix linux

* Revert "remove leftovers from trying to fix linux"

This reverts commit b4589195f1.

* Revert "update versions"

This reverts commit 6a0fbb5318.

* remove leftovers from trying to fix linux

* update versions

* remove unpublished versions

* Update ports/azure-c-shared-utility/vcpkg.json

remove port version

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>

* Update ports/azure-uamqp-c/portfile.cmake

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>

* Update ports/azure-uamqp-c/vcpkg.json

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>

* Update ports/azure-umqtt-c/vcpkg.json

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>

* pr comments

* update versions

* clean up versions

* remove version updates from un-updated packages

* overwrite versions

* Update vcpkg.json

* Update vcpkg.json

* Update azure-macro-utils-c.json

* Update umock-c.json

Co-authored-by: Valerie Avva Lim <vaavva@DESKTOP-A98NJKG.localdomain>
Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <494550702@qq.com>
2022-09-22 14:32:34 -07:00

60 lines
2.1 KiB
CMake

vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
if("public-preview" IN_LIST FEATURES)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-iot-sdk-c
REF cb2e8d390df56ffa31d08ca0a79ab58ff96160cc
SHA512 6798b17d6768b3ccbd0eb66719b50f364cd951736eb71110e2dc9deca054a1566ff88b9e8c5e9b52536e4308cad6cd3cbebff3282c123083e3afaee5535e724b
HEAD_REF public-preview
PATCHES
improve-external-deps-preview.patch
)
else()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-iot-sdk-c
REF 3fd808bee3c88f8578dcc30c0a6d1d396c172070
SHA512 2ee26791aca7732d21fe91cbb51be35d1589161d1d7b54542ac1a1277f1a95eb7e1d5ced7be117ce326dd118169e20ffc6bcd0ea9fd8ac9442bd466bc048f1ea
HEAD_REF master
PATCHES
fix-install-location.patch
improve-external-deps.patch
fix-iothubclient-includes.patch
)
endif()
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
use-prov-client hsm_type_symm_key
use-prov-client use_prov_client
)
file(COPY "${CURRENT_INSTALLED_DIR}/share/azure-c-shared-utility/azure_iot_build_rules.cmake" DESTINATION "${SOURCE_PATH}/deps/azure-c-shared-utility/configs/")
file(COPY "${SOURCE_PATH}/configs/azure_iot_sdksFunctions.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/cmake/azure_iot_sdks/")
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS ${FEATURE_OPTIONS}
-Dskip_samples=ON
-Duse_installed_dependencies=ON
-Duse_default_uuid=ON
-Dbuild_as_dynamic=OFF
-Duse_edge_modules=ON
-Dwarnings_as_errors=OFF
-Dhsm_type_sastoken=OFF
MAYBE_UNUSED_VARIABLES
build_as_dynamic
warnings_as_errors
)
vcpkg_cmake_install()
vcpkg_cmake_config_fixup(PACKAGE_NAME azure_iot_sdks CONFIG_PATH "lib/cmake/azure_iot_sdks")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share")
configure_file("${SOURCE_PATH}/LICENSE" "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright" COPYONLY)
vcpkg_copy_pdbs()