From 41b2b64f0b655a6b3f951a5f1ac0966e7770ceee Mon Sep 17 00:00:00 2001 From: Patrick W3AXL Date: Fri, 14 Feb 2025 10:31:43 -0500 Subject: [PATCH] update cmakesettings.json to match dvmhost repo --- CMakeSettings.json | 58 ++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 54 insertions(+), 4 deletions(-) diff --git a/CMakeSettings.json b/CMakeSettings.json index 36390e7..3879f92 100644 --- a/CMakeSettings.json +++ b/CMakeSettings.json @@ -1,7 +1,25 @@ -{ +{ "configurations": [ { - "name": "x86-Release", + "name": "x64-Debug", + "generator": "Ninja", + "configurationType": "Debug", + "inheritEnvironments": [ "msvc_x64_x64" ], + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "-v", + "ctestCommandArgs": "", + "variables": [ + { + "name": "COMPILE_WIN32", + "value": "True", + "type": "BOOL" + } + ] + }, + { + "name": "x64-RelWithDebInfo", "generator": "Ninja", "configurationType": "RelWithDebInfo", "buildRoot": "${projectDir}\\out\\build\\${name}", @@ -9,7 +27,14 @@ "cmakeCommandArgs": "", "buildCommandArgs": "", "ctestCommandArgs": "", - "inheritEnvironments": [ "msvc_x86" ] + "inheritEnvironments": [ "msvc_x64_x64" ], + "variables": [ + { + "name": "COMPILE_WIN32", + "value": "True", + "type": "BOOL" + } + ] }, { "name": "x86-Debug", @@ -18,9 +43,34 @@ "buildRoot": "${projectDir}\\out\\build\\${name}", "installRoot": "${projectDir}\\out\\install\\${name}", "cmakeCommandArgs": "", + "buildCommandArgs": "-v", + "ctestCommandArgs": "", + "inheritEnvironments": [ "msvc_x86" ], + "variables": [ + { + "name": "COMPILE_WIN32", + "value": "True", + "type": "BOOL" + } + ] + }, + { + "name": "x86-RelWithDebInfo", + "generator": "Ninja", + "configurationType": "RelWithDebInfo", + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", "buildCommandArgs": "", "ctestCommandArgs": "", - "inheritEnvironments": [ "msvc_x86" ] + "inheritEnvironments": [ "msvc_x86" ], + "variables": [ + { + "name": "COMPILE_WIN32", + "value": "True", + "type": "BOOL" + } + ] } ] } \ No newline at end of file