diff --git a/distribution/windows/install.nsi b/distribution/windows/install.nsi index 0607e5c3d6..92a919333f 100644 --- a/distribution/windows/install.nsi +++ b/distribution/windows/install.nsi @@ -152,6 +152,8 @@ Section "!OpenRCT2" Section1 ; Copy executable File /oname=${OPENRCT2_EXE} ${BINARY_DIR}\${OPENRCT2_EXE} + File /oname=openrct2.com ${BINARY_DIR}\openrct2.com + File /oname=openrct2.dll ${BINARY_DIR}\openrct2.dll ; Create the Registry Entries WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\OpenRCT2" "Comments" "Visit ${APPURLLINK}" @@ -218,6 +220,8 @@ Section "Uninstall" Delete "$INSTDIR\readme.txt" Delete "$INSTDIR\contributors.md" Delete "$INSTDIR\${OPENRCT2_EXE}" + Delete "$INSTDIR\openrct2.com" + Delete "$INSTDIR\openrct2.dll" Delete "$INSTDIR\INSTALL.LOG" ; Data files diff --git a/openrct2.proj b/openrct2.proj index 17be4373d3..d676a7a86a 100644 --- a/openrct2.proj +++ b/openrct2.proj @@ -40,6 +40,8 @@ $(DistDir)windows\install.nsi $(TargetDir)openrct2.exe + $(TargetDir)openrct2.com + $(TargetDir)openrct2.dll $(TargetDir)data\g2.dat $(DistDir)windows\code-sign-key-openrct2.org.pfx @@ -75,15 +77,21 @@ + + + + + + @@ -137,6 +145,7 @@ + @@ -204,6 +213,14 @@ StandardOutputImportance="low" /> + + + + + +