nim.cfg 510 B

123456789101112131415161718192021222324252627282930313233
  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. @end
  10. define:useStdoutAsStdmsg
  11. @if nimHasStyleChecks:
  12. styleCheck:error
  13. @end
  14. #define:useNodeIds
  15. #gc:markAndSweep
  16. @if nimHasWarningObservableStores:
  17. warning[ObservableStores]: off
  18. @end
  19. @if nimHasEffectsOf:
  20. experimental:strictEffects
  21. warningAsError:Effect:on
  22. @end