summary refs log tree commit diff
path: root/CMakeSettings.json
diff options
context:
space:
mode:
authorNicolas Riebesel <nagua@users.noreply.github.com>2018-06-14 01:17:38 +0200
committermujx <mujx@users.noreply.github.com>2018-06-14 02:17:38 +0300
commitcce85f3ba8f782b3288bb169fb72e6e160955c83 (patch)
treef573083cd2b20dac6e3378e6a958b37785daeb56 /CMakeSettings.json
parentSlightly improved ru+de translations (#333) (diff)
downloadnheko-cce85f3ba8f782b3288bb169fb72e6e160955c83.tar.xz
Add Visual Studio 2017 support (#336)
Diffstat (limited to 'CMakeSettings.json')
-rw-r--r--CMakeSettings.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/CMakeSettings.json b/CMakeSettings.json
new file mode 100644
index 00000000..c90f6655
--- /dev/null
+++ b/CMakeSettings.json
@@ -0,0 +1,38 @@
+{
+  "configurations": [
+    {
+      "name": "Debug",
+      "generator": "Visual Studio 15 2017 Win64",
+      "configurationType": "Debug",
+      "buildRoot": "${workspaceRoot}\\build-vc\\${name}",
+      "cmakeCommandArgs": "",
+      "variables": [
+        {
+          "name": "CMAKE_TOOLCHAIN_FILE",
+          "value": "${workspaceRoot}\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake" // <-- change vcpkg location here
+        },
+        {
+          "name": "Qt5_DIR",
+          "value": "C:\\Qt\\5.10.1\\msvc2017_64\\lib\\cmake\\Qt5" // <-- change qt location here
+        }
+      ]
+    },
+    {
+      "name": "Release",
+      "generator": "Visual Studio 15 2017 Win64",
+      "configurationType": "Release",
+      "buildRoot": "${workspaceRoot}\\build-vc\\${name}",
+      "cmakeCommandArgs": "",
+      "variables": [
+        {
+          "name": "CMAKE_TOOLCHAIN_FILE",
+          "value": "${workspaceRoot}\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake" // <-- change vcpkg location here
+        },
+        {
+          "name": "Qt5_DIR",
+          "value": "C:\\Qt\\5.10.1\\msvc2017_64\\lib\\cmake\\Qt5" // <-- change qt location here
+        }
+      ]
+    },
+ ]
+}
\ No newline at end of file