diff --git a/source/developers/minio-drivers.rst b/source/developers/minio-drivers.rst index 8e5f9c66..15853329 100644 --- a/source/developers/minio-drivers.rst +++ b/source/developers/minio-drivers.rst @@ -18,43 +18,38 @@ MinIO publishes the following Software Development Kits (SDK): 4. :ref:`Java ` 5. :ref:`JavaScript ` 6. :ref:`Python ` +7. :ref:`C++ ` + +.. _cpp-sdk: + +C++ (``minio-cpp``) +------------------- -.. - C++ repo does not have any releases yet. Once released, unblock this section and add to toctree and numbered list. - - .. _cpp-sdk: +Reference + `MinIO C++ SDK Reference `__ - C++ (``minio-cpp``) - ------------------- +Install + - ``vcpkg`` - Latest Version - |cpp-sdk-version| + .. code-block:: shell + :class: copyable - Reference - :doc:`MinIO C++ SDK Reference ` + vcpkg install minio-cpp - Install - - ``vcpkg`` + - Source - .. code-block:: shell - :class: copyable + .. code-block:: shell + :class: copyable - vcpkg install minio-cpp - - - Source - - .. code-block:: shell - :class: copyable - - git clone https://github.com/minio/minio-cpp - cd minio-cpp - wget --quiet -O vcpkg-master.zip https://github.com/microsoft/vcpkg/archive/refs/heads/master.zip - unzip -qq vcpkg-master.zip - ./vcpkg-master/bootstrap-vcpkg.sh - ./vcpkg-master/vcpkg integrate install - cmake -B ./build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=./vcpkg-master/scripts/buildsystems/vcpkg.cmake - cmake --build ./build --config Debug + git clone https://github.com/minio/minio-cpp + cd minio-cpp + wget --quiet -O vcpkg-master.zip https://github.com/microsoft/vcpkg/archive/refs/heads/master.zip + unzip -qq vcpkg-master.zip + ./vcpkg-master/bootstrap-vcpkg.sh + ./vcpkg-master/vcpkg integrate install + cmake -B ./build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=./vcpkg-master/scripts/buildsystems/vcpkg.cmake + cmake --build ./build --config Debug .. _dotnet-sdk: