mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
- needs #20168 to make the stuff working I went for this minimal solution because it seems like `compiler.nimble` and `nimsuggest.nimble` are not in use Co-authored-by: Clay Sweetser <Varriount@users.noreply.github.com>
15 lines
592 B
Nim
15 lines
592 B
Nim
version = system.NimVersion
|
|
author = "Andreas Rumpf"
|
|
description = "Compiler package providing the compiler sources as a library."
|
|
license = "MIT"
|
|
|
|
bin = @["compiler/nim", "nimsuggest/nimsuggest"]
|
|
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" ]
|
|
skipDirs = @["build" , "changelogs" , "ci" , "csources_v1" , "drnim" , "nimdoc", "testament"]
|
|
|
|
before install:
|
|
when defined(windows):
|
|
exec "./build_all.bat"
|
|
else:
|
|
exec "./build_all.sh"
|