Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Add vcpkg installation instructions #1831

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,18 @@ Each package contains different elements.
* Development package - contains headers and cmake files to build against libk4a.
* Tools package - contains k4aviewer and k4arecorder

## Installing using vcpkg

You can build and install azure-kinect-sensor-sdk using [vcpkg](https://github.com/Microsoft/vcpkg/) dependency manager:

* git clone https://github.com/Microsoft/vcpkg.git
* cd vcpkg
* ./bootstrap-vcpkg.sh # ./bootstrap-vcpkg.bat for Windows
* ./vcpkg integrate install
* ./vcpkg install azure-kinect-sensor-sdk

The azure-kinect-sensor-sdk port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.

## Using tools

The installer comes with a pre-built viewer application (k4aviewer.exe) which can be used to verify the
Expand Down