From d33b309ad79ef1237cafa3aec47a67431c6e4fa3 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sun, 1 Mar 2020 05:45:19 +0000 Subject: [PATCH] Add VS cmake settings file. --- CMakeSettings.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 CMakeSettings.json diff --git a/CMakeSettings.json b/CMakeSettings.json new file mode 100644 index 0000000..32b853c --- /dev/null +++ b/CMakeSettings.json @@ -0,0 +1,28 @@ +{ +"configurations": [ +{ +"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": "x86-Debug", +"generator": "Ninja", +"configurationType": "Debug", +"buildRoot": "${projectDir}\\out\\build\\${name}", +"installRoot": "${projectDir}\\out\\install\\${name}", +"cmakeCommandArgs": "", +"buildCommandArgs": "-v", +"ctestCommandArgs": "", +"inheritEnvironments": [ "msvc_x86" ], +"variables": [] +} +] +} \ No newline at end of file