From 19265883491ca79e22f4026fff21e68f0476b126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 25 May 2014 17:39:04 +0200 Subject: [PATCH] unbreak the OpenRA.Game.exe start menu link fixes #5448 --- packaging/windows/OpenRA.nsi | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packaging/windows/OpenRA.nsi b/packaging/windows/OpenRA.nsi index 3db2306843..3f544293f1 100644 --- a/packaging/windows/OpenRA.nsi +++ b/packaging/windows/OpenRA.nsi @@ -63,6 +63,7 @@ Section "Game" GAME File /r "${SRCDIR}\mods\d2k" File /r "${SRCDIR}\mods\ra" File /r "${SRCDIR}\mods\modchooser" + SetOutPath "$INSTDIR" File "${SRCDIR}\OpenRA.Game.exe" File "${SRCDIR}\OpenRA.Utility.exe" @@ -97,8 +98,6 @@ Section "Game" GAME File "${DEPSDIR}\freetype6.dll" File "${DEPSDIR}\zlib1.dll" File "${DEPSDIR}\lua51.dll" - SetOutPath "$INSTDIR\lua" - File "${SRCDIR}\lua\*.lua" !insertmacro MUI_STARTMENU_WRITE_BEGIN Application CreateDirectory "$SMPROGRAMS\$StartMenuFolder" @@ -108,6 +107,9 @@ Section "Game" GAME "$OUTDIR\README.html" "" "" "" "" !insertmacro MUI_STARTMENU_WRITE_END + SetOutPath "$INSTDIR\lua" + File "${SRCDIR}\lua\*.lua" + SetOutPath "$INSTDIR\glsl" File "${SRCDIR}\glsl\*.frag" File "${SRCDIR}\glsl\*.vert"