From 2bd882e9aa9f40cf077091148c09765aa0a1f6b1 Mon Sep 17 00:00:00 2001 From: F1F7Y <64418963+F1F7Y@users.noreply.github.com> Date: Thu, 29 Jun 2023 05:16:30 +0200 Subject: Add RelWithDebInfo configuration (#483) --- CMakeSettings.json | 24 ++++++++++++++++++------ 1 file 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 -- cgit v1.2.3