mytest.cfg 583 B

1234567891011121314151617181920212223
  1. # This is a comment.
  2. ; this too.
  3. [Common]
  4. cc=gcc # '=' and ':' are the same
  5. --foo="bar" # '--cc' and 'cc' are the same, 'bar' and '"bar"' are the same (except for '#')
  6. macrosym: "#" # Note that '#' is interpreted as a comment without the quotation
  7. --verbose
  8. [Windows]
  9. isConsoleApplication=False ; another comment
  10. [Posix]
  11. isConsoleApplication=True
  12. key1: "in this string backslash escapes are interpreted\n"
  13. key2: r"in this string not"
  14. key3: """triple quotes strings
  15. are also supported. They may span
  16. multiple lines."""
  17. --"long option with spaces": r"c:\myfiles\test.txt"