diff options
author | F1F7Y <64418963+F1F7Y@users.noreply.github.com> | 2023-06-29 05:16:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-28 23:16:30 -0400 |
commit | 2bd882e9aa9f40cf077091148c09765aa0a1f6b1 (patch) | |
tree | 9fd978f590d9a9dfe2e573352a135ecc83862506 | |
parent | d7f8dd76124b65b69338ac7428e2cadd5c5cac3c (diff) | |
download | NorthstarLauncher-2bd882e9aa9f40cf077091148c09765aa0a1f6b1.tar.gz NorthstarLauncher-2bd882e9aa9f40cf077091148c09765aa0a1f6b1.zip |
Add RelWithDebInfo configuration (#483)
-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 |