nim.cfg 529 B

12345678910111213141516171819202122232425262728293031323334
  1. # Special configuration file for the Nim project
  2. hint[XDeclaredButNotUsed]:off
  3. define:booting
  4. define:nimcore
  5. define:nimPreviewFloatRoundtrip
  6. #import:"$projectpath/testability"
  7. @if windows:
  8. cincludes: "$lib/wrappers/libffi/common"
  9. tlsEmulation:off
  10. @end
  11. define:useStdoutAsStdmsg
  12. @if nimHasStyleChecks:
  13. styleCheck:error
  14. @end
  15. #define:useNodeIds
  16. #gc:markAndSweep
  17. @if nimHasWarningObservableStores:
  18. warning[ObservableStores]: off
  19. @end
  20. @if nimHasEffectsOf:
  21. experimental:strictEffects
  22. warningAsError:Effect:on
  23. @end