Skip to content
Snippets Groups Projects
Commit 1a46a2f4 authored by Sebastian Oberschwendtner's avatar Sebastian Oberschwendtner
Browse files

Fixes missing comma in User Preset template.

parent ae824893
No related branches found
No related tags found
2 merge requests!76Draft: Updated Python code example,!73Initial open source version
Pipeline #1304484 passed
......@@ -25,7 +25,7 @@ The following provides preset templates you can build your preset upon.
A possible user preset for the *Windows* preset:
```{.json .copy}
{
"version": 6
"version": 6,
"configurePresets": [
{
"name": "default",
......@@ -41,7 +41,7 @@ The following provides preset templates you can build your preset upon.
A possible user preset for running *MSYS2* on Windows:
```{.json .copy}
{
"version": 6
"version": 6,
"configurePresets": [
{
"name": "default",
......@@ -57,7 +57,7 @@ The following provides preset templates you can build your preset upon.
A possible user preset for the *Linux* preset:
```{.json .copy}
{
"version": 6
"version": 6,
"configurePresets": [
{
"name": "default",
......@@ -78,4 +78,4 @@ cmake -B build -S . --preset default
```
!!! tip
Most **CMake** IDE plugins should recognize these preset files and provide a way for you to select the preset you want.
\ No newline at end of file
Most **CMake** IDE plugins should recognize these preset files and provide a way for you to select the preset you want.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment