nim.nimble 592 B

123456789101112131415
  1. version = system.NimVersion
  2. author = "Andreas Rumpf"
  3. description = "Compiler package providing the compiler sources as a library."
  4. license = "MIT"
  5. bin = @["compiler/nim", "nimsuggest/nimsuggest"]
  6. skipFiles = @["azure-pipelines.yml" , "build_all.bat" , "build_all.sh" , "build_nimble.bat" , "build_nimble.sh" , "changelog.md" , "koch.nim.cfg" , "nimblemeta.json" , "readme.md" , "security.md" ]
  7. skipDirs = @["build" , "changelogs" , "ci" , "csources_v2" , "drnim" , "nimdoc", "testament"]
  8. before install:
  9. when defined(windows):
  10. exec "./build_all.bat"
  11. else:
  12. exec "./build_all.sh"