-
Install vcpkg
Make sure you have vcpkg installed on your system. -
Create CMakeUserPresets.json in the root directory
Configure the presets and set the VCPKG_ROOT environment variable. Use the following template:
{
"version": 1,
"configurePresets": [
{
"name": "<user_preset_name>",
"inherits": "vcpkg",
"environment": {
"VCPKG_ROOT": "<Path_to_vcpkg>"
}
}
]
}
- Build the Project
Run the following commands:
mkdir build && cd build
cmake .. --preset <user_preset_name>
cmake --build .
Execute the following command to run the debugger:
./tools/cdb
To execute the test suite, use:
./test/tests