mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
136 lines
3.3 KiB
INI
136 lines
3.3 KiB
INI
; This config file holds configuration information about the Nim compiler
|
|
; and project.
|
|
|
|
[Project]
|
|
Name: "Nim"
|
|
Version: "$version"
|
|
Platforms: """
|
|
windows: i386;amd64
|
|
linux: i386;amd64;powerpc64;arm;sparc;mips;mipsel;powerpc;powerpc64el;arm64
|
|
macosx: i386;amd64;powerpc64
|
|
solaris: i386;amd64;sparc;sparc64
|
|
freebsd: i386;amd64
|
|
netbsd: i386;amd64
|
|
openbsd: i386;amd64
|
|
haiku: i386;amd64
|
|
"""
|
|
|
|
Authors: "Andreas Rumpf"
|
|
Description: """This is the Nim Compiler. Nim is a new statically typed,
|
|
imperative programming language, that supports procedural, functional, object
|
|
oriented and generic programming styles while remaining simple and efficient.
|
|
A special feature that Nim inherited from Lisp is that Nim's abstract
|
|
syntax tree (AST) is part of the specification - this allows a powerful macro
|
|
system which can be used to create domain specific languages.
|
|
|
|
Nim is a compiled, garbage-collected systems programming language
|
|
which has an excellent productivity/performance ratio. Nim's design
|
|
focuses on the 3E: efficiency, expressiveness, elegance (in the order of
|
|
priority)."""
|
|
|
|
App: Console
|
|
License: "copying.txt"
|
|
|
|
[Config]
|
|
Files: "config/nim.cfg"
|
|
Files: "config/nimdoc.cfg"
|
|
Files: "config/nimdoc.tex.cfg"
|
|
|
|
[Documentation]
|
|
; Files: "doc/*.html"
|
|
; Files: "doc/*.cfg"
|
|
; Files: "doc/*.pdf"
|
|
; Files: "doc/*.ini"
|
|
Files: "doc/overview.html"
|
|
Start: "doc/overview.html"
|
|
|
|
|
|
[Other]
|
|
Files: "readme.txt;install.txt;contributors.txt;copying.txt"
|
|
Files: "makefile"
|
|
Files: "koch.nim"
|
|
Files: "install_nimble.nims"
|
|
|
|
Files: "icons/nim.ico"
|
|
Files: "icons/nim.rc"
|
|
Files: "icons/nim.res"
|
|
Files: "icons/nim_icon.o"
|
|
Files: "icons/koch.ico"
|
|
Files: "icons/koch.rc"
|
|
Files: "icons/koch.res"
|
|
Files: "icons/koch_icon.o"
|
|
|
|
Files: "compiler"
|
|
Files: "doc"
|
|
Files: "tools"
|
|
Files: "web/website.ini"
|
|
Files: "web/ticker.html"
|
|
Files: "web/*.nim"
|
|
Files: "web/*.rst"
|
|
Files: "web/*.csv"
|
|
Files: "web/news/*.rst"
|
|
Files: "bin/nimblepkg/*.nim"
|
|
Files: "bin/nimblepkg/*.cfg"
|
|
|
|
[Lib]
|
|
Files: "lib"
|
|
|
|
[Other]
|
|
Files: "examples"
|
|
#Files: "dist/nimble"
|
|
|
|
Files: "tests"
|
|
|
|
[Windows]
|
|
Files: "bin/nim.exe"
|
|
Files: "bin/c2nim.exe"
|
|
Files: "bin/nimgrep.exe"
|
|
Files: "bin/nimsuggest.exe"
|
|
Files: "bin/nimble.exe"
|
|
Files: "bin/*.dll"
|
|
|
|
Files: "dist/*.dll"
|
|
Files: "koch.exe"
|
|
; Files: "dist/mingw"
|
|
Files: "start.bat"
|
|
BinPath: r"bin;dist\mingw\bin;dist"
|
|
|
|
; Section | dir | zipFile | size hint (in KB) | url | exe start menu entry
|
|
Download: r"Documentation|doc|docs.zip|13824|http://nim-lang.org/download/docs-${version}.zip|overview.html"
|
|
Download: r"C Compiler (MingW)|dist|mingw.zip|82944|http://nim-lang.org/download/${mingw}.zip"
|
|
Download: r"Support DLL's|bin|nim_dlls.zip|479|http://nim-lang.org/download/dlls.zip"
|
|
Download: r"Aporia IDE|dist|aporia.zip|97997|http://nim-lang.org/download/aporia-0.4.0.zip|aporia-0.4.0\bin\aporia.exe"
|
|
; for now only NSIS supports optional downloads
|
|
|
|
[UnixBin]
|
|
Files: "bin/nim"
|
|
|
|
|
|
[Unix]
|
|
InstallScript: "yes"
|
|
UninstallScript: "yes"
|
|
|
|
|
|
[InnoSetup]
|
|
path = r"c:\Program Files (x86)\Inno Setup 5\iscc.exe"
|
|
flags = "/Q"
|
|
|
|
[NSIS]
|
|
path = r"c:\Program Files (x86)\NSIS\makensis.exe"
|
|
flags = "/V0"
|
|
|
|
[C_Compiler]
|
|
path = r""
|
|
flags = "-w"
|
|
|
|
|
|
[deb]
|
|
buildDepends: "gcc (>= 4:4.3.2)"
|
|
pkgDepends: "gcc (>= 4:4.3.2)"
|
|
shortDesc: "The Nim Compiler"
|
|
licenses: "bin/nim,MIT;lib/*,MIT;"
|
|
|
|
[nimble]
|
|
pkgName: "compiler"
|
|
pkgFiles: "compiler/*;doc/basicopt.txt;doc/advopt.txt"
|