cmake-variants.yaml 656 Bytes
Newer Older
huynh's avatar
huynh committed
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
buildType:
  default: debug
  description: Build Type
  choices:
    debug:
      short: Debug
      long: Build with debugging information
      buildType: Debug
    release:
      short: Release
      long: Optimize the resulting binaries
      buildType: Release
    asan:
      short: ASan
      long: Instrument with AddressSanitizer
      buildType: ASan
    lsan:
      short: LSan
      long: Instrument with LeakSanitizer
      buildType: LSan
    msan:
      short: MSan
      long: Instrument with MemorySanitizer
      buildType: MSan
    ubsan:
      short: UBSan
      long: Instrument with UndefinedBehaviourSanitizer
      buildType: UBSan