diff options
author | Fredrik Høisæther Rasch <fredrik.rasch@gmail.com> | 2016-09-30 19:43:38 +0200 |
---|---|---|
committer | Fredrik Høisæther Rasch <fredrik.rasch@gmail.com> | 2016-09-30 19:43:38 +0200 |
commit | 77ba8cb8bbbf1df845e407714024bccd8434293d (patch) | |
tree | b31dbf56d9342eb2cb230b2becdcbe29746d29b9 /compiler/nim.nim | |
parent | abf4e204c2f1a8a6915a8d32c970b5ce64f58e10 (diff) | |
download | Nim-77ba8cb8bbbf1df845e407714024bccd8434293d.tar.gz |
Added icons support for Visual Studio compiler
Diffstat (limited to 'compiler/nim.nim')
-rw-r--r-- | compiler/nim.nim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/nim.nim b/compiler/nim.nim index a58afd593..0afefa853 100644 --- a/compiler/nim.nim +++ b/compiler/nim.nim @@ -13,6 +13,11 @@ when defined(gcc) and defined(windows): else: {.link: "icons/nim_icon.o".} +when defined(amd64) and defined(windows) and defined(vcc): + {.link: "icons/nim-amd64-windows-vcc.res" .} +when defined(i386) and defined(windows) and defined(vcc): + {.link: "icons/nim-i386-windows-vcc.res" .} + import commands, lexer, condsyms, options, msgs, nversion, nimconf, ropes, extccomp, strutils, os, osproc, platform, main, parseopt, service, |