Skip to content

Commit

Permalink
create windows installer from files in 'dist'
Browse files Browse the repository at this point in the history
  • Loading branch information
abika committed Jul 2, 2015
1 parent 08ca541 commit 8cfb0e8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions win_installer/create_installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
!define JARNAME "KontalkDesktopApp.jar"
!define WEBSITE "kontalk.org"
!define ICON "kontalk.ico"
!define INP_DIR "..\dist"

;Java
!define JRE_VERSION "1.8"
Expand Down Expand Up @@ -156,8 +157,8 @@ Section foo SID
SetOutPath $INSTDIR

; files
File ${JARNAME}
File /r lib
File ${INP_DIR}\${JARNAME}
File /r ${INP_DIR}\lib
File ${ICON}

; shortcuts for all user
Expand Down

0 comments on commit 8cfb0e8

Please sign in to comment.