Skip to content

Commit

Permalink
Added missing v136 files to build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMaximus committed Jul 8, 2023
1 parent 3cbee3e commit a77f02f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build-release/x64.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ Section "Game Installation" GameInstall
${File} "<SOURCEDIR>" "YamlDotNet.dll"
${File} "<SOURCEDIR>" "readme.txt"
${File} "<SOURCEDIR>" "sqlite3.dll"
${CreateDirectory} "$INSTDIR\Sounds"
${SetOutPath} "$INSTDIR\Sounds"
${File} "<SOURCEDIR>\Sounds" "Failure.wav"
${File} "<SOURCEDIR>\Sounds" "Success.wav"
${CreateDirectory} "$INSTDIR\License"
${SetOutPath} "$INSTDIR\License"
${File} "<SOURCEDIR>\License" "7z license.txt"
Expand Down
4 changes: 4 additions & 0 deletions build-release/x86.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ Section "Game Installation" GameInstall
${File} "<SOURCEDIR>" "YamlDotNet.dll"
${File} "<SOURCEDIR>" "readme.txt"
${File} "<SOURCEDIR>" "sqlite3.dll"
${CreateDirectory} "$INSTDIR\Sounds"
${SetOutPath} "$INSTDIR\Sounds"
${File} "<SOURCEDIR>\Sounds" "Failure.wav"
${File} "<SOURCEDIR>\Sounds" "Success.wav"
${CreateDirectory} "$INSTDIR\License"
${SetOutPath} "$INSTDIR\License"
${File} "<SOURCEDIR>\License" "7z license.txt"
Expand Down
3 changes: 3 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ install: GBM.exe $(foreach size,$(ICONSIZES),gbm_$(size)x$(size).png)
install NHotkey.dll $(DESTDIR)/$(PREFIX)/share/gbm/;
install NHotkey.WindowsForms.dll $(DESTDIR)/$(PREFIX)/share/gbm/;
install YamlDotNet.dll $(DESTDIR)/$(PREFIX)/share/gbm/;
install -d $(DESTDIR)/$(PREFIX)/share/gbm/Sounds/;
install Sounds/Failure.wav $(DESTDIR)/$(PREFIX)/share/gbm/Sounds/;
install Sounds/Success.wav $(DESTDIR)/$(PREFIX)/share/gbm/Sounds/;
install -d $(DESTDIR)/$(PREFIX)/share/gbm/zh/;
install zh/GBM.resources.dll $(DESTDIR)/$(PREFIX)/share/gbm/zh/;
#install icon in different sizes
Expand Down

0 comments on commit a77f02f

Please sign in to comment.