.gitignore 723 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. *
  2. !**/
  3. !*.*
  4. # Cache
  5. nimcache/
  6. rnimcache/
  7. dnimcache/
  8. *.o
  9. !/icons/*.o
  10. *.obj
  11. *.ilk
  12. *.pdb
  13. *.dll
  14. *.exe
  15. *.so
  16. *.dylib
  17. *.zip
  18. *.iss
  19. *.log
  20. mapping.txt
  21. tags
  22. install.sh
  23. deinstall.sh
  24. doc/html/
  25. doc/*.html
  26. doc/*.pdf
  27. doc/*.idx
  28. /web/upload
  29. build/*
  30. bin/*
  31. # iOS specific wildcards.
  32. *.mode1v3
  33. *.pbxuser
  34. *.perspective
  35. *.perspectivev3
  36. *.swp
  37. .DS_Store
  38. project.xcworkspace/
  39. xcuserdata/
  40. # Generated files.
  41. /compile.json
  42. /compiler/nim.dot
  43. /reject.json
  44. /run.json
  45. # for `nim doc foo.nim`
  46. /*.html
  47. #/testresults.html #covered by /*.html
  48. /testresults.json
  49. testament.db
  50. /csources
  51. dist/
  52. # Private directories and files (IDEs)
  53. .*/
  54. ~*
  55. # testament cruft; TODO: generate these in a gitignore'd dir in the first place.
  56. testresults/
  57. test.txt
  58. /test.ini