2022-05-11 10:50:05 -05:00
|
|
|
--threads:on
|
|
|
|
|
--tlsEmulation:off
|
2023-03-09 10:24:44 +01:00
|
|
|
--styleCheck:usages
|
|
|
|
|
--styleCheck:error
|
2022-07-08 13:28:04 -05:00
|
|
|
|
|
|
|
|
when (NimMajor, NimMinor) == (1, 2):
|
|
|
|
|
switch("hint", "Processing:off")
|
|
|
|
|
switch("hint", "XDeclaredButNotUsed:off")
|
|
|
|
|
switch("warning", "ObservableStores:off")
|
|
|
|
|
|
|
|
|
|
when (NimMajor, NimMinor) > (1, 2):
|
|
|
|
|
switch("hint", "XCannotRaiseY:off")
|
2024-05-15 11:37:01 -06:00
|
|
|
# begin Nimble config (version 2)
|
|
|
|
|
when withDir(thisDir(), system.fileExists("nimble.paths")):
|
|
|
|
|
include "nimble.paths"
|
|
|
|
|
# end Nimble config
|
2025-02-13 20:26:58 +01:00
|
|
|
|
|
|
|
|
when (NimMajor, NimMinor) >= (2, 0):
|
|
|
|
|
--mm:refc
|
|
|
|
|
|