diff options
author | Araq <rumpf_a@web.de> | 2012-01-15 13:54:28 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-01-15 13:54:28 +0100 |
commit | 9a2df340a78c10d092599cf5b0222eea5ecb67f2 (patch) | |
tree | bcc8fa363a1da86207ddf04698a83e814f52efed /compiler/nimconf.nim | |
parent | 8836bbdb94423e6c2b865ad9fda7f0efa8bf9094 (diff) | |
download | Nim-9a2df340a78c10d092599cf5b0222eea5ecb67f2.tar.gz |
project wide configuration file now with suffix '.nimrod.cfg'
Diffstat (limited to 'compiler/nimconf.nim')
-rwxr-xr-x | compiler/nimconf.nim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler/nimconf.nim b/compiler/nimconf.nim index 971ce6127..c3592e03a 100755 --- a/compiler/nimconf.nim +++ b/compiler/nimconf.nim @@ -241,4 +241,7 @@ proc LoadConfigs*(cfg: string) = if conffile != pd / cfg and existsFile(conffile): readConfigFile(conffile) rawMessage(warnConfigDeprecated, conffile) - + + # new project wide config file: + readConfigFile(changeFileExt(gProjectFull, "nimrod.cfg")) + |