diff --git a/RingWinClient.pro b/RingWinClient.pro index 5ceaae6fa6701659b8488d0151d1f0ea6868b344..17ecdcf1dc787e9216d0928048b2d8beee2e0409 100644 --- a/RingWinClient.pro +++ b/RingWinClient.pro @@ -15,7 +15,7 @@ DEFINES += VERSION=\\\"$$VERSION\\\" DEFINES += GIT_VERSION=\\\"$$GIT_VERSION\\\" BUILD=$${BUILD} -TARGET = RingClientWindows +TARGET = Ring TEMPLATE = app QMAKE_CXXFLAGS += -std=c++11 diff --git a/ring.nsi b/ring.nsi index 93720b10e6d77b5ecb9dfc91f4cc3b6fa51b879c..a8092e80b39ab8098e5d39aa307f5a799f323245 100644 --- a/ring.nsi +++ b/ring.nsi @@ -61,7 +61,7 @@ section "install" # Files for the install directory - to build the installer, these should be in the same directory as the install script (this file) setOutPath $INSTDIR # Files added here should be removed by the uninstaller (see section "uninstall") - file "RingClientWindows.exe" + file "Ring.exe" file "ring.ico" file *.dll setOutPath $INSTDIR\platforms @@ -75,11 +75,11 @@ section "install" writeUninstaller "$INSTDIR\uninstall.exe" #Desktop - CreateShortCut "$DESKTOP\Ring.lnk" "$INSTDIR\RingClientWindows.exe" "" + CreateShortCut "$DESKTOP\Ring.lnk" "$INSTDIR\Ring.exe" "" # Start Menu createDirectory "$SMPROGRAMS\${COMPANYNAME}" - createShortCut "$SMPROGRAMS\${COMPANYNAME}\${APPNAME}.lnk" "$INSTDIR\RingClientWindows.exe" "" "$INSTDIR\ring.ico" + createShortCut "$SMPROGRAMS\${COMPANYNAME}\${APPNAME}.lnk" "$INSTDIR\Ring.exe" "" "$INSTDIR\ring.ico" # Registry information for add/remove programs WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}" "DisplayName" ${APPNAME} @@ -122,7 +122,7 @@ section "uninstall" rmDir "$SMPROGRAMS\${COMPANYNAME}" # Remove files - delete $INSTDIR\RingClientWindows.exe + delete $INSTDIR\Ring.exe delete $INSTDIR\ring.ico delete $INSTDIR\*.dll rmDir /r $INSTDIR\platforms