$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Install Vcpkg on Debian – Step-by-step

July 20, 2025 | By the+gnu+linux+evangelist.

How to Install

  1. 2. Downloading Repo

    Clone the Repository with Git
    With:

    git clone https://github.com/microsoft/vcpkg.git
  2. 3. Installing Vcpkg

    Now to Bootstrap Vcpkg for Debian
    Simply play:

    cd vcpkg; ./bootstrap-vcpkg.sh

    Next, switch it into the Path like:

    sudo mv vcpkg /usr/local/bin

    Again configure the integration with CMake with:

    vcpkg integrate install

    Last, to show the Help notice:

    vcpkg --help
    Vcpkg help
  3. 4. Vcpkg Getting Started Guide

    Getting Started with Vcpkg on GNU/Linux

    Vcpkg Quick Start Guide

Contents