diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2011-04-05 20:53:24 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2011-04-06 13:24:45 +0200 |
commit | 380de3bdc5853556d3cc663a6ca92fdccc3dec23 (patch) | |
tree | 42127fd6296ca8353d53fe3134335e7e4bc64438 /packaging | |
parent | 370f24a65a7aa6973db39e38a0994bfae0eb0f10 (diff) | |
download | mana-380de3bdc5853556d3cc663a6ca92fdccc3dec23.tar.gz mana-380de3bdc5853556d3cc663a6ca92fdccc3dec23.tar.bz2 mana-380de3bdc5853556d3cc663a6ca92fdccc3dec23.tar.xz mana-380de3bdc5853556d3cc663a6ca92fdccc3dec23.zip |
Make the set of included DLLs in the Windows installer explicit
This is to make sure the right DLLs are shipped, not too many and not
too few.
Reviewed-by: Yohann Ferreira
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/windows/setup.nsi | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/packaging/windows/setup.nsi b/packaging/windows/setup.nsi index 221b60d6..caa0442a 100644 --- a/packaging/windows/setup.nsi +++ b/packaging/windows/setup.nsi @@ -198,7 +198,22 @@ Section "Core files (required)" SecCore SetOutPath "$INSTDIR" File "${EXEDIR}\mana.exe" - File "${DLLDIR}\*.dll" + File "${DLLDIR}\guichan.dll" + File "${DLLDIR}\guichan_sdl.dll" + File "${DLLDIR}\libcurl-4.dll" + File "${DLLDIR}\libiconv2.dll" + File "${DLLDIR}\libiconv-2.dll" + File "${DLLDIR}\libintl3.dll" + File "${DLLDIR}\libpng12-0.dll" + File "${DLLDIR}\libxml2-2.dll" + File "${DLLDIR}\physfs.dll" + File "${DLLDIR}\SDL.dll" + File "${DLLDIR}\SDL_gfx.dll" + File "${DLLDIR}\SDL_image.dll" + File "${DLLDIR}\SDL_mixer.dll" + File "${DLLDIR}\SDL_net.dll" + File "${DLLDIR}\SDL_ttf.dll" + File "${DLLDIR}\zlib1.dll" File "${SRCDIR}\AUTHORS" File "${SRCDIR}\COPYING" File "${SRCDIR}\NEWS" |