summaryrefslogtreecommitdiff
path: root/tests/format/options/compound-or-condition/project.conf
blob: 6841b79ccc739cd7fd64643c36774ec8d2155ea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: test
min-version: 2.0

options:
  debug:
    type: bool
    description: Whether debugging is enabled
    default: False
  logging:
    type: bool
    description: Whether logging is enabled
    default: False

variables:
  logging: 'False'
  (?):
  # Logging is enabled if specified or if debugging is requested
  - logging or debug:
      logging: 'True'