git-gui: Use proper Windows shortcuts instead of bat files
commit51a41ac4efd8bcbcf2aa6e738c42ae4d46d10947
authorShawn O. Pearce <spearce@spearce.org>
Fri, 12 Oct 2007 20:11:35 +0000 (12 16:11 -0400)
committerShawn O. Pearce <spearce@spearce.org>
Sat, 13 Oct 2007 03:07:58 +0000 (12 23:07 -0400)
tree5994a0e2ae1a525759dcb83873e7b4e71afdbeef
parentd6db1ad51a5ac8154fcc2413f1eb6142c1a0639a
git-gui: Use proper Windows shortcuts instead of bat files

On Windows its better to use a shortcut (.lnk file) over a batch
script (.bat) as we can specify the icon file for the .lnk and
thus have these git specific objects appear on the desktop with
that git specific icon file.

Unfortunately the authors of Tcl did not bless us with the APIs
needed to create shortcuts from within Tcl.  But Microsoft did
give us Windows Scripting Host which allows us to execute some
JavaScript that calls some sort of COM object that can operate
on a .lnk file.

We now build both Cygwin and non-Cygwin "desktop icons" as proper
Windows .lnk files, using the "Start in" property of these files
to indicate the working directory of the repository the user wants
to launch.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Makefile
lib/shortcut.tcl
lib/win32.tcl [new file with mode: 0644]
lib/win32_shortcut.js [new file with mode: 0644]