File: CMakeSettings.json

package info (click to toggle)
nheko 0.8.0%2Breally0.7.2-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 10,116 kB
  • sloc: cpp: 58,677; makefile: 144; sh: 138; xml: 101; python: 80; ansic: 6
file content (46 lines) | stat: -rw-r--r-- 1,373 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
  "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": "CMAKE_INSTALL_PREFIX",
          "value": "${workspaceRoot}/.deps"
        },
        {
          "name": "Qt5_DIR",
          "value": "C:\\Qt\\5.11.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": "CMAKE_INSTALL_PREFIX",
          "value": "${workspaceRoot}/.deps"
        },
        {
          "name": "Qt5_DIR",
          "value": "C:\\Qt\\5.11.1\\msvc2017_64\\lib\\cmake\\Qt5" // <-- change qt location here
        }
      ]
    },
 ]
}