setup default 32-bit targets for MSVC

This commit is contained in:
mtrojnar 2022-07-16 21:23:48 +02:00
parent a19d77a8a7
commit 213ea27f99
2 changed files with 27 additions and 1 deletions

1
.gitignore vendored
View File

@ -4,7 +4,6 @@ _CPack_Packages/
Testing/
.vs/
CMakeSettings.json
CMakeCache.txt
cmake_install.cmake
config.h

27
CMakeSettings.json Normal file
View File

@ -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": []
}
]
}