mytest.cfg 485 B

12345678910111213141516171819202122
  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
  6. --verbose
  7. [Windows]
  8. isConsoleApplication=False ; another comment
  9. [Posix]
  10. isConsoleApplication=True
  11. key1: "in this string backslash escapes are interpreted\n"
  12. key2: r"in this string not"
  13. key3: """triple quotes strings
  14. are also supported. They may span
  15. multiple lines."""
  16. --"long option with spaces": r"c:\myfiles\test.txt"