diff options
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/windows/setup.nsi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packaging/windows/setup.nsi b/packaging/windows/setup.nsi index d37a5cce..c380e7b7 100644 --- a/packaging/windows/setup.nsi +++ b/packaging/windows/setup.nsi @@ -148,6 +148,7 @@ Section "Core files (required)" SecCore CreateShortCut "$SMPROGRAMS\Aethyra\Aethyra.lnk" "$INSTDIR\aethyra.exe" CreateShortCut "$DESKTOP\Aethyra.lnk" "$INSTDIR\aethyra.exe" CreateDirectory "$INSTDIR\data" + CreateDirectory "$INSTDIR\data\fonts" CreateDirectory "$INSTDIR\data\graphics" CreateDirectory "$INSTDIR\data\help" CreateDirectory "$INSTDIR\data\icons" @@ -166,6 +167,8 @@ Section "Core files (required)" SecCore File "${AETHYRAROOT}\COPYING" File "${AETHYRAROOT}\NEWS" File "${AETHYRAROOT}\README" + SetOutPath "$INSTDIR\data\fonts" + File "${AETHYRAROOT}\data\fonts\*.ttf" SetOutPath "$INSTDIR\data\graphics\gui" File "${AETHYRAROOT}\data\graphics\gui\*.png" File "${AETHYRAROOT}\data\graphics\gui\*.xml" |