- Create a new run configuration of type Shell Script
- Set the name to
CMake init - Set the command type to "Script text" and set the script text to
New-Item -ItemType Directory -Path [NavKit root directory]\build -ErrorAction SilentlyContinue; cd build; cmake --preset x64-debug .. - Set the working directory to the NavKit root directory
- Set the name to
- Create another new run configuration of type Native Executable
- Set the name to
NavKit - Set the exe path to
[NavKit root directory]/build/x64-debug/Debug/NavKit.exe - Set the working directory to
[NavKit root directory]/build/x64-debug/Debug - Delete the existing entry in
Before Launch - Create a new entry in
Before Launchof typeExternal Tool - Name it
CMake build NavKit Debug - Set the Program to
cmake - Set the Arguments to
--build --preset x64-debug --target NavKit - Set the Working Directory to
[NavKit Root Directory]
- Set the name to