diff options
author | Araq <rumpf_a@web.de> | 2013-09-24 16:07:07 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-09-24 16:07:07 +0200 |
commit | 8b5aa221adc9946894225dc569bac9d2d8bdde6d (patch) | |
tree | 4affd857c41c15ed3ba4e0d2c210b69f30664489 /compiler/nimrod.ini | |
parent | 83584bf88934c45ce10e770ee15d070a09f88f45 (diff) | |
download | Nim-8b5aa221adc9946894225dc569bac9d2d8bdde6d.tar.gz |
support for multiple modules of the same name; niminst supports 'platforms'; minor bugfixes
Diffstat (limited to 'compiler/nimrod.ini')
-rw-r--r-- | compiler/nimrod.ini | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/compiler/nimrod.ini b/compiler/nimrod.ini index 22623993c..0dc44a7c9 100644 --- a/compiler/nimrod.ini +++ b/compiler/nimrod.ini @@ -1,8 +1,16 @@ [Project] Name: "Nimrod" Version: "$version" -OS: "windows;linux;macosx;solaris;freebsd;netbsd;openbsd" -CPU: "i386;amd64;powerpc64;arm" # ;sparc +Platforms: """ + windows: i386;amd64 + linux: i386;amd64;powerpc64;arm;sparc;mips + macosx: i386;amd64;powerpc64 + solaris: i386;amd64;sparc + freebsd: i386;amd64 + netbsd: i386;amd64 + openbsd: i386;amd64 + haiku: i386;amd64 +""" Authors: "Andreas Rumpf" Description: """This is the Nimrod Compiler. Nimrod is a new statically typed, |