mirror of https://github.com/zedeus/nitter
18 lines
358 B
Nim
18 lines
358 B
Nim
--define:ssl
|
|
--define:useStdLib
|
|
|
|
# workaround httpbeast file upload bug
|
|
--assertions:off
|
|
|
|
# disable annoying warnings
|
|
warning("GcUnsafe2", off)
|
|
hint("XDeclaredButNotUsed", off)
|
|
hint("XCannotRaiseY", off)
|
|
hint("User", off)
|
|
|
|
const
|
|
nimVersion = (major: NimMajor, minor: NimMinor, patch: NimPatch)
|
|
|
|
when nimVersion >= (1, 6, 0):
|
|
warning("HoleEnumConv", off)
|