aboutsummaryrefslogtreecommitdiff
path: root/CMakePresets.json
blob: 84c0aff15c647cfd45089e4c732ccf3b7105c039 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
    "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"
        }
      },
      {
        "name": "linux tests",
        "generator": "Unix Makefiles",
        "binaryDir": "${sourceDir}/build/linux",
        "cacheVariables": {
          "CMAKE_BUILD_TYPE": "Release",
          "CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
          "AEDILE_INCLUDE_TESTS": "ON"
        }
      }
    ],
    "buildPresets": [
      {
        "name": "linux",
        "configurePreset": "linux",
        "jobs": 4
      },
      {
        "name": "linux tests",
        "configurePreset": "linux tests",
        "jobs": 4
      }
    ],
    "testPresets": [
      {
        "name": "linux",
        "configurePreset": "linux tests"
      }
    ]
  }