From 7ab5a7eb6421e26444d39e1a054e65c0c37780fd Mon Sep 17 00:00:00 2001 From: lordmulder Date: Sat, 14 Dec 2013 23:21:47 +0100 Subject: [PATCH] Simplified installer code. --- etc/setup/setup.nsi | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/etc/setup/setup.nsi b/etc/setup/setup.nsi index 427918e..f25b055 100644 --- a/etc/setup/setup.nsi +++ b/etc/setup/setup.nsi @@ -437,18 +437,8 @@ Section "!Install Files" SetOutPath "$INSTDIR\imageformats" File /a `${X264_SOURCE_PATH}\imageformats\*.dll` - SetOutPath "$INSTDIR\toolset\x86" - File /a `${X264_SOURCE_PATH}\toolset\x86\*.exe` - File /nonfatal /a `${X264_SOURCE_PATH}\toolset\x86\*.dll` - - SetOutPath "$INSTDIR\toolset\x64" - File /a `${X264_SOURCE_PATH}\toolset\x64\*.exe` - File /nonfatal /a `${X264_SOURCE_PATH}\toolset\x64\*.dll` - - SetOutPath "$INSTDIR\toolset\common" - File /a `${X264_SOURCE_PATH}\toolset\common\*.exe` - File /a `${X264_SOURCE_PATH}\toolset\common\*.gpg` - File /nonfatal /a `${X264_SOURCE_PATH}\toolset\common\*.dll` + SetOutPath "$INSTDIR\toolset" + File /a /r `${X264_SOURCE_PATH}\toolset\*.*` SetOutPath "$INSTDIR" File /a `${X264_SOURCE_PATH}\*.dll`