diff --git a/compiler/nim.nim b/compiler/nim.nim index a58afd593d..0afefa8539 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, diff --git a/icons/koch-amd64-windows-vcc.res b/icons/koch-amd64-windows-vcc.res new file mode 100644 index 0000000000..90d7d1f7ac Binary files /dev/null and b/icons/koch-amd64-windows-vcc.res differ diff --git a/icons/koch-i386-windows-vcc.res b/icons/koch-i386-windows-vcc.res new file mode 100644 index 0000000000..90d7d1f7ac Binary files /dev/null and b/icons/koch-i386-windows-vcc.res differ diff --git a/icons/nim-amd64-windows-vcc.res b/icons/nim-amd64-windows-vcc.res new file mode 100644 index 0000000000..b2d8fc9eb4 Binary files /dev/null and b/icons/nim-amd64-windows-vcc.res differ diff --git a/icons/nim-i386-windows-vcc.res b/icons/nim-i386-windows-vcc.res new file mode 100644 index 0000000000..b2d8fc9eb4 Binary files /dev/null and b/icons/nim-i386-windows-vcc.res differ diff --git a/koch.nim b/koch.nim index 9ccc752c0f..97f6a0c8e9 100644 --- a/koch.nim +++ b/koch.nim @@ -15,6 +15,11 @@ when defined(gcc) and defined(windows): else: {.link: "icons/koch_icon.o".} +when defined(amd64) and defined(windows) and defined(vcc): + {.link: "icons/koch-amd64-windows-vcc.res" .} +when defined(i386) and defined(windows) and defined(vcc): + {.link: "icons/koch-i386-windows-vcc.res" .} + import os, strutils, parseopt, osproc, streams