Skip to content

Commit

Permalink
More Windows installer fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Bowra-Dean authored and pchote committed Nov 21, 2010
1 parent fb173af commit d5d6cea
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packaging/windows/OpenRA.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,11 @@ Section "Client" Client
"$OUTDIR\OpenRA.ico" "" "" "" ""
!insertmacro MUI_STARTMENU_WRITE_END

SetOutPath "$INSTDIR\shaders"
File "${SRCDIR}\shaders\*.fx"
SetOutPath "$INSTDIR\cg"
File "${SRCDIR}\cg\*.fx"
SetOutPath "$INSTDIR\glsl"
File "${SRCDIR}\glsl\*.frag"
File "${SRCDIR}\glsl\*.vert"
SectionEnd

Section "Editor" Editor
Expand Down Expand Up @@ -271,7 +274,8 @@ SectionEnd
Function ${UN}Clean
RMDir /r $INSTDIR\mods
RMDir /r $INSTDIR\maps
RMDir /r $INSTDIR\shaders
RMDir /r $INSTDIR\cg
RMDir /r $INSTDIR\glsl
Delete $INSTDIR\OpenRA.Game.exe
Delete $INSTDIR\OpenRA.Utility.exe
Delete $INSTDIR\OpenRA.Editor.exe
Expand Down

0 comments on commit d5d6cea

Please sign in to comment.