summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/CMakePresets/CyclicInheritance2.json.in
blob: 0e1d7d418653089eba2e6090a908f86dc302c1dc (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
{
  "version": 1,
  "configurePresets": [
    {
      "name": "CyclicInheritance0",
      "generator": "@RunCMake_GENERATOR@",
      "binaryDir": "${sourceDir}/build",
      "inherits": [
        "CyclicInheritance1"
      ]
    },
    {
      "name": "CyclicInheritance1",
      "generator": "@RunCMake_GENERATOR@",
      "binaryDir": "${sourceDir}/build",
      "inherits": [
        "CyclicInheritance2"
      ]
    },
    {
      "name": "CyclicInheritance2",
      "generator": "@RunCMake_GENERATOR@",
      "binaryDir": "${sourceDir}/build",
      "inherits": [
        "CyclicInheritance0"
      ]
    }
  ]
}