From 724fd9d572fa6cf31657422744a0631175dc34a1 Mon Sep 17 00:00:00 2001 From: Marius Greuel Date: Tue, 27 Dec 2022 16:38:48 +0100 Subject: [PATCH] CMake: Add Visual Studio settings file --- CMakeSettings.json | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 CMakeSettings.json diff --git a/CMakeSettings.json b/CMakeSettings.json new file mode 100644 index 00000000..f18e99de --- /dev/null +++ b/CMakeSettings.json @@ -0,0 +1,40 @@ +{ + "configurations": [ + { + "name": "x64-Debug", + "generator": "Ninja", + "configurationType": "Debug", + "inheritEnvironments": [ "msvc_x64_x64" ], + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "variables": [ + { + "name": "USE_EXTERNAL_LIBS", + "value": "true", + "type": "BOOL" + } + ] + }, + { + "name": "x64-Release", + "generator": "Ninja", + "configurationType": "RelWithDebInfo", + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "inheritEnvironments": [ "msvc_x64_x64" ], + "variables": [ + { + "name": "USE_EXTERNAL_LIBS", + "value": "true", + "type": "BOOL" + } + ] + } + ] +} \ No newline at end of file