Intial somewhat working version

This commit is contained in:
2026-05-02 14:20:38 +10:00
commit a76d37c2e8
28 changed files with 2572 additions and 0 deletions

22
CMakePresets.json Normal file
View File

@@ -0,0 +1,22 @@
{
"version": 6,
"configurePresets": [
{
"name": "windows-debug",
"displayName": "Windows Debug",
"generator": "Visual Studio 17 2022",
"architecture": "x64",
"binaryDir": "${sourceDir}/build/windows-debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
}
],
"buildPresets": [
{
"name": "windows-debug",
"configurePreset": "windows-debug",
"configuration": "Debug"
}
]
}