vcpkg/ports/azure-storage-cpp/portfile.cmake

40 lines
1.2 KiB
CMake
Raw Normal View History

2016-12-02 14:54:03 +08:00
include(vcpkg_common_functions)
2017-03-08 10:04:52 +08:00
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/azure-storage-cpp-3.0.0)
2016-12-02 14:54:03 +08:00
vcpkg_download_distfile(ARCHIVE
2017-03-08 10:04:52 +08:00
URLS "https://github.com/Azure/azure-storage-cpp/archive/v3.0.0.tar.gz"
FILENAME "azure-storage-cpp/v3.0.0.tar.gz"
SHA512 45d0d7f8cc350a16cff0371cdd442e851912c89061acfec559482e8f79cebafffd8681b32a30b878e329235cd3aaad5d2ff797d1148302e3109cf5111df14b97
2016-12-02 14:54:03 +08:00
)
vcpkg_extract_source_archive(${ARCHIVE})
2017-04-08 02:46:59 +08:00
find_path(ATLMFC_PATH NAMES "atlbase.h")
if(ATLMFC_PATH STREQUAL "ATLMFC_PATH-NOTFOUND")
message(FATAL_ERROR "Could not find ATL. Please ensure you have installed the \"Visual C++ ATL support\" optional feature underneath the Desktop C++ workload.")
endif()
2016-12-02 14:54:03 +08:00
vcpkg_apply_patches(
SOURCE_PATH ${SOURCE_PATH}
PATCHES
${CMAKE_CURRENT_LIST_DIR}/cmake.patch
2017-04-08 06:15:49 +08:00
${CMAKE_CURRENT_LIST_DIR}/static-builds.patch
2016-12-02 14:54:03 +08:00
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}/Microsoft.WindowsAzure.Storage
OPTIONS
-DBUILD_TESTS=OFF
-DBUILD_SAMPLES=OFF
)
vcpkg_install_cmake()
file(INSTALL
${SOURCE_PATH}/LICENSE.txt
DESTINATION ${CURRENT_PACKAGES_DIR}/share/azure-storage-cpp RENAME copyright)
file(REMOVE_RECURSE
${CURRENT_PACKAGES_DIR}/debug/include)
vcpkg_copy_pdbs()