Initial commit

This commit is contained in:
github-classroom[bot]
2025-05-08 08:33:11 +00:00
committed by GitHub
commit 294e9ab735
188 changed files with 65381 additions and 0 deletions

32
CmakeSettings.json Normal file
View File

@@ -0,0 +1,32 @@
{
"configurations": [
{
"name": "x86-Debug",
"generator": "Visual Studio 17 2022",
"configurationType": "Debug",
"buildRoot": "${projectDir}\\out\\build\\${name}", // Project files go here
"cmakeCommandArgs": "",
"inheritEnvironments": [ "msvc_x86" ],
"variables": [
{
"name": "CMAKE_GENERATOR_PLATFORM",
"value": "Win32"
}
]
},
{
"name": "x86-Release",
"generator": "Visual Studio 17 2022",
"configurationType": "Release",
"buildRoot": "${projectDir}\\out\\build\\${name}", // Project files go here
"cmakeCommandArgs": "",
"inheritEnvironments": [ "msvc_x86" ],
"variables": [
{
"name": "CMAKE_GENERATOR_PLATFORM",
"value": "Win32"
}
]
}
]
}