From 0b9999610c68985e6c753277319f267baea06bbc Mon Sep 17 00:00:00 2001 From: Marius Greuel Date: Thu, 5 Jan 2023 16:23:53 +0100 Subject: [PATCH] Add x86 targets to Visual Studio settings file --- CMakeSettings.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/CMakeSettings.json b/CMakeSettings.json index f18e99de..7be75397 100644 --- a/CMakeSettings.json +++ b/CMakeSettings.json @@ -35,6 +35,42 @@ "type": "BOOL" } ] + }, + { + "name": "x86-Debug", + "generator": "Ninja", + "configurationType": "Debug", + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "inheritEnvironments": [ "msvc_x86" ], + "variables": [ + { + "name": "USE_EXTERNAL_LIBS", + "value": "true", + "type": "BOOL" + } + ] + }, + { + "name": "x86-Release", + "generator": "Ninja", + "configurationType": "RelWithDebInfo", + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "inheritEnvironments": [ "msvc_x86" ], + "variables": [ + { + "name": "USE_EXTERNAL_LIBS", + "value": "true", + "type": "BOOL" + } + ] } ] } \ No newline at end of file