diff options
Diffstat (limited to 'CMakeSettings.json')
-rw-r--r-- | CMakeSettings.json | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/CMakeSettings.json b/CMakeSettings.json new file mode 100644 index 0000000..ed9cc6c --- /dev/null +++ b/CMakeSettings.json @@ -0,0 +1,56 @@ +{ + "configurations": [ + { + "buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", + "configurationType": "Release", + "generator": "Visual Studio 15 2017 Win64", + "inheritEnvironments": [ + "msvc_x64_x64" + ], + "installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}", + "name": "x64-Release" + }, + { + "name": "x64-Debug", + "generator": "Visual Studio 15 2017 Win64", + "configurationType": "Debug", + "inheritEnvironments": [ + "msvc_x64_x64" + ], + "buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", + "installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}" + }, + { + "name": "x64-Debug-NOLOG", + "generator": "Visual Studio 15 2017 Win64", + "configurationType": "Debug", + "inheritEnvironments": [ + "msvc_x64_x64" + ], + "variables": [ + { + "name": "NOLOG", + "value": "1" + } + ], + "buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", + "installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}" + }, + { + "name": "x64-Release-NOLOG", + "generator": "Visual Studio 15 2017 Win64", + "configurationType": "Release", + "inheritEnvironments": [ + "msvc_x64_x64" + ], + "variables": [ + { + "name": "NOLOG", + "value": "1" + } + ], + "buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", + "installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}" + } + ] +}
\ No newline at end of file |