From 7b358424ebad9349421acd533c2fa1cbf6cf3e3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 28 Dec 2016 16:52:56 +0100 Subject: Initial import of xtrkcad version 1:4.0.2-2 --- distribution/win32/nsis/install.nsh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 distribution/win32/nsis/install.nsh (limited to 'distribution/win32/nsis/install.nsh') diff --git a/distribution/win32/nsis/install.nsh b/distribution/win32/nsis/install.nsh new file mode 100644 index 0000000..9f14625 --- /dev/null +++ b/distribution/win32/nsis/install.nsh @@ -0,0 +1,28 @@ +; +; This file is included from the CMake generated NSIS file during install. +; + +CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\XTrkCad Help.lnk" "$INSTDIR\share\xtrkcad\xtrkcad.chm" "" "" 0 +CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\XTrkCad ReadMe.lnk" "notepad.exe" "$INSTDIR\share\xtrkcad\ReadMe.txt" + +; +; create file association +; +; back up old value of .xtc + !define Index "Line${__LINE__}" + ReadRegStr $1 HKCR ".xtc" "" + StrCmp $1 "" "${Index}-NoBackup" + StrCmp $1 "XTrackCAD.Design" "${Index}-NoBackup" + WriteRegStr HKCR ".xtc" "backup_val" $1 + "${Index}-NoBackup:" + +; create the new association + WriteRegStr HKCR ".xtc" "" "XTrackCAD.Design" + WriteRegStr HKCR "XTrackCAD.Design" "" "XTrackCAD Layout Design" + WriteRegStr HKCR "XTrackCAD.Design\shell" "" "open" + WriteRegStr HKCR "XTrackCAD.Design\DefaultIcon" "" "$INSTDIR\bin\xtrkcad.exe,0" + WriteRegStr HKCR "XTrackCAD.Design\shell\open\command" "" '$INSTDIR\bin\xtrkcad.exe "%1"' + + System::Call 'Shell32::SHChangeNotify(i 0x8000000, i 0, i 0, i 0)' + + !undef Index \ No newline at end of file -- cgit v1.2.3