Ziti-sdk-c CMake Error

Is there any idea to install C SDK ?
I got the following error while installing:

nick@nick:~/ziti-sdk-c$ mkdir build
cd build
cmake --preset ci-linux-x64 ..
cmake --build .
Preset CMake variables:

  CMAKE_BUILD_TYPE="Release"
  CMAKE_CXX_EXTENSIONS="OFF"
  CMAKE_CXX_FLAGS=""
  CMAKE_CXX_STANDARD="11"
  CMAKE_CXX_STANDARD_REQUIRED="ON"
  CMAKE_C_EXTENSIONS="ON"
  CMAKE_C_FLAGS=""
  CMAKE_C_STANDARD="99"
  CMAKE_C_STANDARD_REQUIRED="ON"
  CMAKE_TOOLCHAIN_FILE="/scripts/buildsystems/vcpkg.cmake"
  VCPKG_MANIFEST_FEATURES="test;samples"
  ziti_DEVELOPER_MODE="ON"

CMake Error at /usr/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake:130 (message):
  Could not find toolchain file: /scripts/buildsystems/vcpkg.cmake
Call Stack (most recent call first):
  CMakeLists.txt:7 (project)


CMake Error: CMake was unable to find a build program corresponding to "Ninja Multi-Config".  CMAKE_MAKE_PROGRAM is not set.  You probably need to select a different build tool.
CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage
-- Configuring incomplete, errors occurred!
No such file or directory
CMake Error: Generator: execution of make failed. Make command was:  && 

I believe you still need to setup/install vcpkg. Did you find https://github.com/openziti/ziti-sdk-c/blob/main/BUILD.md and did you set VCPKG_ROOT?

I made a supershort example set of 'how to get it to build' over on this post too:

I just tried it now and it "works on my machine" (famous last words, I know!)

Basically boils down to this (copy/pasted from that post). Obviously change the paths...:

export VCPKG_ROOT=/path/to/where/you/want/to/put/vcpkg
mkdir -p $VCPKG_ROOT
git clone git@github.com:microsoft/vcpkg.git $VCPKG_ROOT
sudo apt install zip -y
sudo apt-get install pkg-config -y
$VCPKG_ROOT/bootstrap-vcpkg.sh
cd /to/wherever/you/have/ziti-tunnel-sdk-c/
mkdir build
cd build
cmake --preset ci-linux-x64 ..
cmake build .

It is working.
Thank you so much. :heart: