Add a default / example CMakeSettings.json for VS

This commit is contained in:
Ted John 2018-04-13 21:56:58 +01:00
parent f24b1bdfa6
commit fc83f72fc6
1 changed files with 21 additions and 0 deletions

21
.vs/CMakeSettings.json Normal file
View File

@ -0,0 +1,21 @@
{
"configurations": [
{
"name": "x64-Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"generator": "Ninja",
"buildRoot": "${env.LOCALAPPDATA}\\CMakeBuild\\${workspaceHash}\\build\\${name}",
"configurationType": "Debug",
"variables": [
{
"name": "VCPKG_TARGET_TRIPLET",
"value": "x64-windows-winssl"
},
{
"name": "CMAKE_TOOLCHAIN_FILE",
"value": "C:\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake"
}
]
}
]
}