diff options
Diffstat (limited to 'packaging/windows')
-rw-r--r-- | packaging/windows/setup.nsi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packaging/windows/setup.nsi b/packaging/windows/setup.nsi index d0743eb22..3269962d0 100644 --- a/packaging/windows/setup.nsi +++ b/packaging/windows/setup.nsi @@ -193,6 +193,7 @@ Section "Core files (required)" SecCore CreateDirectory "$INSTDIR\data\themes\blackwood" CreateDirectory "$INSTDIR\data\themes\classic" CreateDirectory "$INSTDIR\data\themes\enchilado" + CreateDirectory "$INSTDIR\data\themes\pink" CreateDirectory "$INSTDIR\data\themes\redandblack" CreateDirectory "$INSTDIR\data\themes\wood" CreateDirectory "$INSTDIR\docs" @@ -231,6 +232,9 @@ Section "Core files (required)" SecCore SetOutPath "$INSTDIR\data\themes\enchilado" File "${SRCDIR}\data\themes\enchilado\*.png" File "${SRCDIR}\data\themes\enchilado\*.xml" + SetOutPath "$INSTDIR\data\themes\pink" + File "${SRCDIR}\data\themes\pink\*.png" + File "${SRCDIR}\data\themes\pink\*.xml" SetOutPath "$INSTDIR\data\themes\redandblack" File "${SRCDIR}\data\themes\redandblack\*.png" File "${SRCDIR}\data\themes\redandblack\*.xml" |