Update for working-ish build with CMake

This commit is contained in:
Loki Rautio
2026-04-15 19:04:39 -05:00
parent 2ab3eb7ce9
commit d44b054a5e
2 changed files with 27 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ on:
- '!.clang-format'
- '!.github/**'
- '.github/workflows/nightly.yml'
- '!*.txt'
permissions:
contents: write

26
CMakeSettings.json Normal file
View File

@@ -0,0 +1,26 @@
{
"configurations": [
{
"name": "x64-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": ""
},
{
"name": "x64-Release",
"generator": "Ninja",
"configurationType": "RelWithDebInfo",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ]
}
]
}