config.nims 372 B

123456789101112131415161718
  1. --define:ssl
  2. --define:useStdLib
  3. --threads:off
  4. # workaround httpbeast file upload bug
  5. --assertions:off
  6. # disable annoying warnings
  7. warning("GcUnsafe2", off)
  8. hint("XDeclaredButNotUsed", off)
  9. hint("XCannotRaiseY", off)
  10. hint("User", off)
  11. const
  12. nimVersion = (major: NimMajor, minor: NimMinor, patch: NimPatch)
  13. when nimVersion >= (1, 6, 0):
  14. warning("HoleEnumConv", off)