aboutsummaryrefslogtreecommitdiff
path: root/CMakePresets.json
blob: 208a08573e2c3122db07f64deda76f376d46e702 (plain)
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
{
    "version": 2,
    "configurePresets": [
      {
        "name": "linux",
        "generator": "Unix Makefiles",
        "binaryDir": "${sourceDir}/build/linux",
        "cacheVariables": {
          "CMAKE_BUILD_TYPE": "Release",
          "CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
        }
      }
    ],
    "buildPresets": [
      {
        "name": "linux",
        "configurePreset": "linux",
        "jobs": 4
      }
    ],
    "testPresets": [
      {
        "name": "linux",
        "configurePreset": "linux"
      }
    ]
  }