diff --git a/compiler.nimble b/compiler.nimble deleted file mode 100644 index f4da45519d825..0000000000000 --- a/compiler.nimble +++ /dev/null @@ -1,9 +0,0 @@ - -version = system.NimVersion -author = "Andreas Rumpf" -description = "Compiler package providing the compiler sources as a library." -license = "MIT" - -installDirs = @["compiler", "nimsuggest"] - -requires "nim >= 0.14.0" diff --git a/nim.nimble b/nim.nimble new file mode 100644 index 0000000000000..a629c0e04b3f3 --- /dev/null +++ b/nim.nimble @@ -0,0 +1,14 @@ +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" diff --git a/nimsuggest/nimsuggest.nimble b/nimsuggest/nimsuggest.nimble deleted file mode 100644 index 53b5d1d6fc592..0000000000000 --- a/nimsuggest/nimsuggest.nimble +++ /dev/null @@ -1,8 +0,0 @@ -version = "0.1.0" -author = "Andreas Rumpf" -description = "Tool for providing auto completion data for Nim source code." -license = "MIT" - -bin = @["nimsuggest"] - -requires "nim >= 1.1.1"