diff options
| author | Ray Hogenson <rayhogenson@gmail.com> | 2012-01-10 15:34:34 -0900 |
|---|---|---|
| committer | Ray Hogenson <rayhogenson@gmail.com> | 2012-01-10 15:34:34 -0900 |
| commit | 6a4082406f71e40541602473bb0003fe3879fcdd (patch) | |
| tree | 3fca53b15b55aa2a062d3d5db89ab82d6ebc90b1 /YetiHack/os/windows | |
| parent | c1d1a4cfb55e87fb4db68980b3af9c31fde363a9 (diff) | |
| download | yetihack-6a4082406f71e40541602473bb0003fe3879fcdd.tar.zst | |
Working yetihack
Diffstat (limited to 'YetiHack/os/windows')
| -rw-r--r-- | YetiHack/os/windows/Makefile | 15 | ||||
| -rw-r--r-- | YetiHack/os/windows/install.nsi | 97 | ||||
| -rw-r--r-- | YetiHack/os/windows/yetihack-windows/pdcurses.dll | bin | 118784 -> 0 bytes | |||
| -rwxr-xr-x | YetiHack/os/windows/yetihack-windows/yetihack.exe | bin | 1110779 -> 0 bytes |
4 files changed, 0 insertions, 112 deletions
diff --git a/YetiHack/os/windows/Makefile b/YetiHack/os/windows/Makefile deleted file mode 100644 index d1e8745..0000000 --- a/YetiHack/os/windows/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -yetihack.exe: ../YetiHack.cpp - i586-mingw32msvc-g++ src/YetiHack.cpp src/yeti.cpp -o yetihack.exe -lpdcurses - -rm os/windows/yetihack-windows/yetihack.exe - ln yetihack.exe yetihack-windows - -package: yetihack.exe - makensis install.nsi - zip yetihack-windows.zip yetihack-windows - -clean: - -rm yetihack.exe - -rm YetiHack_installer.exe - -rm yetihack-windows.zip - -rm yetihack-windows/yetihack.exe - diff --git a/YetiHack/os/windows/install.nsi b/YetiHack/os/windows/install.nsi deleted file mode 100644 index a53078e..0000000 --- a/YetiHack/os/windows/install.nsi +++ /dev/null @@ -1,97 +0,0 @@ -; example2.nsi
-;
-; This script is based on example1.nsi, but it remember the directory,
-; has uninstall support and (optionally) installs start menu shortcuts.
-;
-; It will install example2.nsi into a directory that the user selects,
-
-;--------------------------------
-
-; The name of the installer
-Name "YetiHack Installer"
-
-; The file to write
-OutFile "YetiHack_installer.exe"
-
-; The default installation directory
-InstallDir $PROGRAMFILES\YetiHack
-
-; Registry key to check for directory (so if you install again, it will
-; overwrite the old one automatically)
-InstallDirRegKey HKLM "Software\YetiHack" "Install_Dir"
-
-; Request application privileges for Windows Vista
-RequestExecutionLevel admin
-
-;--------------------------------
-
-; Pages
-
-Page components
-Page directory
-Page instfiles
-
-UninstPage uninstConfirm
-UninstPage instfiles
-
-;--------------------------------
-
-; The stuff to install
-Section "YetiHack"
-
- SectionIn RO
-
- SetOutPath $INSTDIR
- File "/home/ray/Documents/programming/YetiHack/windows/yetihack.exe"
- File "/usr/i586-mingw32msvc/bin/pdcurses.dll"
-
- ; Write the installation path into the registry
- WriteRegStr HKLM SOFTWARE\YetiHack "Install_Dir" "$INSTDIR"
-
- ; Write the uninstall keys for Windows
- WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\YetiHack" "YetiHack Uninstaller" "YetiHack"
- WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\YetiHack" "UninstallString" '"$INSTDIR\uninstall.exe"'
- WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\YetiHack" "NoModify" 1
- WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\YetiHack" "NoRepair" 1
- WriteUninstaller "uninstall.exe"
-
-SectionEnd
-
-; Optional section (can be disabled by the user)
-Section "Start Menu Shortcuts"
-
- CreateDirectory "$SMPROGRAMS\YetiHack"
- CreateShortCut "$SMPROGRAMS\YetiHack\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0
- CreateShortCut "$SMPROGRAMS\YetiHack\YetiHack.lnk" "$INSTDIR\YetiHack.exe" "" "$INSTDIR\YetiHack.exe" 0
-
-SectionEnd
-
-Section "Desktop Shortcut"
-
- CreateShortCut "$DESKTOP\YetiHack.lnk" "$INSTDIR\YetiHack.exe" "" "$INSTDIR\YetiHack.exe" 0
-
-SectionEnd
-
-;--------------------------------
-
-; Uninstaller
-
-Section "Uninstall"
-
- ; Remove registry keys
- DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\YetiHack"
- DeleteRegKey HKLM SOFTWARE\YetiHack
-
- ; Remove files and uninstaller
- Delete $INSTDIR\*
- Delete $INSTDIR\uninstall.exe
-
- ; Remove shortcuts, if any
- Delete "$SMPROGRAMS\YetiHack\*.*"
- Delete "$DESKTOP\YetiHack.lnk"
-
- ; Remove directories used
- RMDir "$SMPROGRAMS\YetiHack"
- RMDir "$INSTDIR"
-
-SectionEnd
diff --git a/YetiHack/os/windows/yetihack-windows/pdcurses.dll b/YetiHack/os/windows/yetihack-windows/pdcurses.dll Binary files differdeleted file mode 100644 index 550c7a2..0000000 --- a/YetiHack/os/windows/yetihack-windows/pdcurses.dll +++ /dev/null diff --git a/YetiHack/os/windows/yetihack-windows/yetihack.exe b/YetiHack/os/windows/yetihack-windows/yetihack.exe Binary files differdeleted file mode 100755 index 58ec272..0000000 --- a/YetiHack/os/windows/yetihack-windows/yetihack.exe +++ /dev/null |
