aboutsummaryrefslogtreecommitdiffstats
path: root/CMakePresets.json
blob: 2967a90521c61e5ef0cd828448393495fbc1147f (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
{
  "version": 6,
  "configurePresets": [
    {
      "name": "debug",
      "description": "Debug Build",
      "generator": "Ninja",
      "binaryDir": "${sourceDir}/build/debug",
      "cacheVariables": {
        "CMAKE_BUILD_TYPE": "Debug",
        "COMPILE_WARNINGS_AS_ERRORS": false,
        "clap-remote_BUILD_TESTS": false
      }
    },
    {
      "name": "release",
      "description": "Release Build",
      "generator": "Ninja",
      "binaryDir": "${sourceDir}/build/release",
      "cacheVariables": {
        "CMAKE_BUILD_TYPE": "Release"
      }
    }
  ]
}