Files
ZombieGame-Rawr/CmakeSettings.json
github-classroom[bot] 294e9ab735 Initial commit
2025-05-08 08:33:11 +00:00

32 lines
830 B
JSON

{
"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"
}
]
}
]
}