-
Notifications
You must be signed in to change notification settings - Fork 1
Desktop Configuration
Matthew LaRocca edited this page Nov 7, 2024
·
1 revision
This page will get you started developing for desktop. You will need to have VSCode, Docker, Node.js and CMake installed on your system.
Clone and bootstrap vcpkg using the following commands
git clone https://github.com/microsoft/vcpkg.git C:\some\path\to\vcpkg
cd C:\some\path\to\vcpkg
./bootstrap-vcpkg.bat
Set an environment variable with the path to vcpkg:
- Open Windows Explorer and Right click on
This PC
and select `Properties" from the popup menu. - Select
Advanced System Settings
and then click theEnvironment Variables...
button in the popup window - Add a new user variable named
VCPKG_DIR
with value:C:\some\path\to\vcpkg
. Note: if it is open, you will need to close and reopen VSCode after doing this.
Begin by ensuring that you have homebrew installed. Install the needed dependency:
brew install pkg-config
Clone and bootstrap vcpkg using the following commands
git clone https://github.com/microsoft/vcpkg.git /some/path/to/vcpkg
cd /some/path/to/vcpkg
./bootstrap-vcpkg.sh
Set an environment variable with the path to vcpkg:
- Open the file:
~/.zshenv
in a text editor. Create it if it does not already exist. - Add the line:
export VCPKG_DIR=/some/path/to/vcpkg
to the bottom of the file. - Update environment variables:
source ~/.zshenv