From 9572a5105d0bf809e942a107865bd96d7ded237f Mon Sep 17 00:00:00 2001 From: Florent Castelli Date: Wed, 8 Mar 2017 02:20:13 +0100 Subject: [PATCH] cmake: Add initial CMake support for VS2017 --- CMakeSettings.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 CMakeSettings.json diff --git a/CMakeSettings.json b/CMakeSettings.json new file mode 100644 index 0000000000..f0788e1b39 --- /dev/null +++ b/CMakeSettings.json @@ -0,0 +1,20 @@ +{ + "configurations": [ + { + "name": "x64-Debug", + "generator": "Visual Studio 15 2017 Win64", + "configurationType": "Debug", + "buildRoot": "${env.LOCALAPPDATA}\\CMakeBuild\\${workspaceHash}\\build\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "-m -p:PreferredToolArchitecture=x64" + }, + { + "name": "x64-Release", + "generator": "Visual Studio 15 2017 Win64", + "configurationType": "Release", + "buildRoot": "${env.LOCALAPPDATA}\\CMakeBuild\\${workspaceHash}\\build\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "-m -p:PreferredToolArchitecture=x64" + } + ] +}