diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-06-30 22:43:55 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-06-30 22:43:55 +0300 |
commit | 765ff5dcb569abdc147d3cb13ef29bdedc842c8f (patch) | |
tree | 68f10fa474c7dec5b578525d9f3c299bfd38f398 /CMakeSettings.json | |
parent | Add basic support for replies (#292) (diff) | |
download | nheko-765ff5dcb569abdc147d3cb13ef29bdedc842c8f.tar.xz |
Fix crash on Windows with out_of_range exception & update docs
Diffstat (limited to 'CMakeSettings.json')
-rw-r--r-- | CMakeSettings.json | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/CMakeSettings.json b/CMakeSettings.json index c90f6655..cd32e378 100644 --- a/CMakeSettings.json +++ b/CMakeSettings.json @@ -12,8 +12,12 @@ "value": "${workspaceRoot}\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake" // <-- change vcpkg location here }, { + "name": "CMAKE_INSTALL_PREFIX", + "value": "${workspaceRoot}/.deps" + }, + { "name": "Qt5_DIR", - "value": "C:\\Qt\\5.10.1\\msvc2017_64\\lib\\cmake\\Qt5" // <-- change qt location here + "value": "C:\\Qt\\5.11.1\\msvc2017_64\\lib\\cmake\\Qt5" // <-- change qt location here } ] }, @@ -29,10 +33,14 @@ "value": "${workspaceRoot}\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake" // <-- change vcpkg location here }, { + "name": "CMAKE_INSTALL_PREFIX", + "value": "${workspaceRoot}/.deps" + }, + { "name": "Qt5_DIR", - "value": "C:\\Qt\\5.10.1\\msvc2017_64\\lib\\cmake\\Qt5" // <-- change qt location here + "value": "C:\\Qt\\5.11.1\\msvc2017_64\\lib\\cmake\\Qt5" // <-- change qt location here } ] }, ] -} \ No newline at end of file +} |