diff options
-rw-r--r-- | CMakeSettings.json | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/CMakeSettings.json b/CMakeSettings.json index 1f1b37c2..2e46e711 100644 --- a/CMakeSettings.json +++ b/CMakeSettings.json @@ -1,9 +1,20 @@ -{ +{ "configurations": [ { - "name": "x64-Debug", + "name": "x64-Release", "generator": "Ninja", - "configurationType": "Debug", + "configurationType": "Release", + "buildRoot": "${projectDir}\\build", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "inheritEnvironments": [ "msvc_x64_x64" ] + }, + { + "name": "x64-RelWithDebInfo", + "generator": "Ninja", + "configurationType": "RelWithDebInfo", "inheritEnvironments": [ "msvc_x64_x64" ], "buildRoot": "${projectDir}\\build", "installRoot": "${projectDir}\\out\\install\\${name}", @@ -12,15 +23,16 @@ "ctestCommandArgs": "" }, { - "name": "x64-Release", + "name": "x64-Debug", "generator": "Ninja", - "configurationType": "Release", + "configurationType": "Debug", "buildRoot": "${projectDir}\\build", "installRoot": "${projectDir}\\out\\install\\${name}", "cmakeCommandArgs": "", "buildCommandArgs": "", "ctestCommandArgs": "", - "inheritEnvironments": [ "msvc_x64_x64" ] + "inheritEnvironments": [ "msvc_x64_x64" ], + "variables": [] } ] }
\ No newline at end of file |