mirror of
https://github.com/apple/foundationdb.git
synced 2025-06-02 19:25:52 +08:00
* Change to old url format azure://<endpoint>/<account>/<container>/ * Remove unnecessary dependency * Add cmake_minimum_required for azure backup cmake file * Add the comments for new supported urls * Add the host name resolution logic * format files * refactor part of the code * Add documentation about Azure backup testing * Add more comments, update the doc
18 lines
622 B
CMake
18 lines
622 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
|
|
project(azurestorage-download)
|
|
|
|
include(ExternalProject)
|
|
ExternalProject_Add(azurestorage
|
|
GIT_REPOSITORY https://github.com/Azure/azure-storage-cpplite.git
|
|
GIT_TAG 11e1f98b021446ef340f4886796899a6eb1ad9a5 # v0.3.0
|
|
SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/azurestorage-src"
|
|
BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/azurestorage-build"
|
|
CMAKE_ARGS "-DCMAKE_BUILD_TYPE=Release"
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
TEST_COMMAND ""
|
|
BUILD_BYPRODUCTS "${CMAKE_CURRENT_BINARY_DIR}/libazure-storage-lite.a"
|
|
)
|