feat: add CMakePresets.json

Signed-off-by: Seth Flynn <getchoo@tuta.io>
This commit is contained in:
Seth Flynn 2025-04-08 14:59:33 -04:00
parent 224503cc93
commit 9131f79cc0
No known key found for this signature in database
GPG key ID: D31BD0D494BBEE86
6 changed files with 585 additions and 0 deletions

14
CMakePresets.json Normal file
View file

@ -0,0 +1,14 @@
{
"$schema": "https://cmake.org/cmake/help/latest/_downloads/3e2d73bff478d88a7de0de736ba5e361/schema.json",
"version": 8,
"cmakeMinimumRequired": {
"major": 3,
"minor": 28
},
"include": [
"cmake/linuxPreset.json",
"cmake/macosPreset.json",
"cmake/windowsMinGWPreset.json",
"cmake/windowsMSVCPreset.json"
]
}