Requirements: cmake
git submodule update --init
./vcpkg/bootstrap-vcpkg.sh
cmake -B build -S .
cmake --build build
./build/HelloWorld
Ref: C++のためのvcpkgとCMake(Linux) #fmt - Qiita
sudo apt update
sudo apt install -y cmake
git submodule add --depth 1 https://github.com/microsoft/vcpkg.git
./vcpkg/bootstrap-vcpkg.sh
./vcpkg/vcpkg new --application
./vcpkg/vcpkg add port fmt
touch CMakeLists.txt main.cpp # and edit
cmake -B build -S .
cmake --build build
./build/HelloWorld # -> Hello World!