Skip to content

Commit

Permalink
Added exe installer
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamBasly authored Nov 20, 2024
1 parent 1afde30 commit 2eb2a2e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Binary file added learningservicesrepo.exe
Binary file not shown.
23 changes: 23 additions & 0 deletions learningservicesrepoinstaller.nsi
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
!define APP_NAME "learningservicesrepo"
!define INSTALL_DIR "$PROGRAMFILES\${APP_NAME}"

SetCompressor lzma

Name "${APP_NAME} Installer"
OutFile "learningservicesrepo.exe"
InstallDir ${INSTALL_DIR}

Page directory
Page instfiles

Section ""
SetOutPath $INSTDIR
File /r "C:\PainterProject"
WriteUninstaller "$INSTDIR\Uninstall.exe"
CreateShortCut "$DESKTOP\learningservicesrepo.lnk" "$INSTDIR\index.html"
SectionEnd

Section "Uninstall"
Delete "$DESKTOP\learningservicesrepo.lnk"
RMDir /r "$INSTDIR"
SectionEnd

0 comments on commit 2eb2a2e

Please sign in to comment.