diff options
Diffstat (limited to 'tools/winrelease.nim')
-rw-r--r-- | tools/winrelease.nim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/winrelease.nim b/tools/winrelease.nim new file mode 100644 index 000000000..5a687cfaa --- /dev/null +++ b/tools/winrelease.nim @@ -0,0 +1,9 @@ +## This is a small helper program to build the Win release. +## This used to be part of koch (and it still uses koch as a library) +## but since 'koch.exe' cannot overwrite itself is now its own program. +## The problem is that 'koch.exe' too is part of the zip bundle and +## needs to have the right 32/64 bit version. (Bug #6147) + +import "../koch" + +winRelease() |