cmJSONParser.dict 667 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # JSON Parser Dictionary
  2. # Structure
  3. "{"
  4. "}"
  5. "["
  6. "]"
  7. ":"
  8. ","
  9. # Values
  10. "true"
  11. "false"
  12. "null"
  13. # Strings
  14. "\""
  15. "\\"
  16. "\\x0a"
  17. "\\x0d"
  18. "\\x09"
  19. "\\u"
  20. "\\u0000"
  21. "\\uFFFF"
  22. # Numbers
  23. "0"
  24. "1"
  25. "-1"
  26. "0.0"
  27. "1.0"
  28. "-1.0"
  29. "1e10"
  30. "1E10"
  31. "1e-10"
  32. "1e+10"
  33. "1.5e10"
  34. # Whitespace
  35. " "
  36. "\x09"
  37. "\x0a"
  38. "\x0d"
  39. # Common CMake preset keys
  40. "version"
  41. "cmakeMinimumRequired"
  42. "configurePresets"
  43. "buildPresets"
  44. "testPresets"
  45. "packagePresets"
  46. "workflowPresets"
  47. "name"
  48. "hidden"
  49. "inherits"
  50. "displayName"
  51. "description"
  52. "generator"
  53. "binaryDir"
  54. "cacheVariables"
  55. "environment"
  56. "condition"
  57. "vendor"
  58. # Common values
  59. "Ninja"
  60. "Unix Makefiles"
  61. "Visual Studio"
  62. "Debug"
  63. "Release"
  64. "RelWithDebInfo"
  65. "MinSizeRel"