Skip to content

Commit

Permalink
Fix mosquitto_rr.exe not being included in Windows installers.
Browse files Browse the repository at this point in the history
Closes #1463. Thanks to raisonchacko.
  • Loading branch information
ralight committed Oct 29, 2019
1 parent 47dadb9 commit 1d46870
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ChangeLog.txt
Expand Up @@ -17,6 +17,8 @@ Client library:
Clients:
- Fix duplicate cfg definition in rr_client. Closes #1453.

Installer:
- Fix mosquitto_rr.exe not being included in Windows installers. Closes #1463.

1.6.7 - 20190925
================
Expand Down
2 changes: 2 additions & 0 deletions installer/mosquitto.nsi
Expand Up @@ -45,6 +45,7 @@ Section "Files" SecInstall
File "..\build\src\Release\mosquitto_passwd.exe"
File "..\build\client\Release\mosquitto_pub.exe"
File "..\build\client\Release\mosquitto_sub.exe"
File "..\build\client\Release\mosquitto_rr.exe"
File "..\build\lib\Release\mosquitto.dll"
File "..\build\lib\cpp\Release\mosquittopp.dll"
File "..\aclfile.example"
Expand Down Expand Up @@ -90,6 +91,7 @@ Section "Uninstall"
Delete "$INSTDIR\mosquitto_passwd.exe"
Delete "$INSTDIR\mosquitto_pub.exe"
Delete "$INSTDIR\mosquitto_sub.exe"
Delete "$INSTDIR\mosquitto_rr.exe"
Delete "$INSTDIR\mosquitto.dll"
Delete "$INSTDIR\mosquittopp.dll"
Delete "$INSTDIR\aclfile.example"
Expand Down
2 changes: 2 additions & 0 deletions installer/mosquitto64.nsi
Expand Up @@ -46,6 +46,7 @@ Section "Files" SecInstall
File "..\build64\src\Release\mosquitto_passwd.exe"
File "..\build64\client\Release\mosquitto_pub.exe"
File "..\build64\client\Release\mosquitto_sub.exe"
File "..\build64\client\Release\mosquitto_rr.exe"
File "..\build64\lib\Release\mosquitto.dll"
File "..\build64\lib\cpp\Release\mosquittopp.dll"
File "..\aclfile.example"
Expand Down Expand Up @@ -91,6 +92,7 @@ Section "Uninstall"
Delete "$INSTDIR\mosquitto_passwd.exe"
Delete "$INSTDIR\mosquitto_pub.exe"
Delete "$INSTDIR\mosquitto_sub.exe"
Delete "$INSTDIR\mosquitto_rr.exe"
Delete "$INSTDIR\mosquitto.dll"
Delete "$INSTDIR\mosquittopp.dll"
Delete "$INSTDIR\aclfile.example"
Expand Down

0 comments on commit 1d46870

Please sign in to comment.