From 213ea27f995634639196c85fcbf713106fc6dd96 Mon Sep 17 00:00:00 2001 From: mtrojnar Date: Sat, 16 Jul 2022 21:23:48 +0200 Subject: [PATCH] setup default 32-bit targets for MSVC --- .gitignore | 1 - CMakeSettings.json | 27 +++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 CMakeSettings.json diff --git a/.gitignore b/.gitignore index 608291e..657fbb9 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,6 @@ _CPack_Packages/ Testing/ .vs/ -CMakeSettings.json CMakeCache.txt cmake_install.cmake config.h diff --git a/CMakeSettings.json b/CMakeSettings.json new file mode 100644 index 0000000..74875c4 --- /dev/null +++ b/CMakeSettings.json @@ -0,0 +1,27 @@ +{ + "configurations": [ + { + "name": "x86-Debug", + "generator": "Ninja", + "configurationType": "Debug", + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "inheritEnvironments": [ "msvc_x86" ] + }, + { + "name": "x86-Release", + "generator": "Ninja", + "configurationType": "RelWithDebInfo", + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "inheritEnvironments": [ "msvc_x86" ], + "variables": [] + } + ] +} \ No newline at end of file