Add basic CMake project

This commit is contained in:
Grayson Riffe 2025-01-20 18:32:12 -06:00
parent 4583213522
commit e0937131b1
3 changed files with 56 additions and 0 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
.vs/
build/

5
CMakeLists.txt Normal file
View File

@ -0,0 +1,5 @@
# Mainspring CMakeLists.txt
cmake_minimum_required(VERSION 3.20)
project(mainspring)

50
CMakePresets.json Normal file
View File

@ -0,0 +1,50 @@
// Mainspring CMake presets
{
"version": 3,
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/${presetName}",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_C_COMPILER": "cl.exe",
"CMAKE_CXX_COMPILER": "cl.exe"
}
},
{
"name": "Debug",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "Release",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
}
],
"buildPresets": [
{
"name": "Debug",
"configurePreset": "Debug"
},
{
"name": "Release",
"configurePreset": "Release"
}
]
}