comparison nsis/gvim.nsi @ 16451:7ae2396cef62 v8.1.1230

patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe commit https://github.com/vim/vim/commit/afde13b62b8fa25dac4635d5caee8d088b937ee0 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 28 19:46:49 2019 +0200 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe Problem: A lot of code is shared between vim.exe and gvim.exe. Solution: Optionally put the shared code in vim.dll. (Ken Takata, closes #4287)
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Apr 2019 20:00:10 +0200
parents 6400235ca4ad
children 3c182c550195
comparison
equal deleted inserted replaced
16450:bf74bce807e8 16451:7ae2396cef62
320 # we need also this here if the user changes the instdir 320 # we need also this here if the user changes the instdir
321 StrCpy $0 "$INSTDIR\vim${VER_MAJOR}${VER_MINOR}" 321 StrCpy $0 "$INSTDIR\vim${VER_MAJOR}${VER_MINOR}"
322 322
323 SetOutPath $0 323 SetOutPath $0
324 File /oname=gvim.exe ${VIMSRC}\gvim_ole.exe 324 File /oname=gvim.exe ${VIMSRC}\gvim_ole.exe
325 !if /FileExists "${VIMSRC}\vim${BIT}.dll"
326 File ${VIMSRC}\vim${BIT}.dll
327 !endif
325 File /oname=install.exe ${VIMSRC}\installw32.exe 328 File /oname=install.exe ${VIMSRC}\installw32.exe
326 File /oname=uninstal.exe ${VIMSRC}\uninstalw32.exe 329 File /oname=uninstal.exe ${VIMSRC}\uninstalw32.exe
327 File ${VIMSRC}\vimrun.exe 330 File ${VIMSRC}\vimrun.exe
328 File /oname=tee.exe ${VIMSRC}\teew32.exe 331 File /oname=tee.exe ${VIMSRC}\teew32.exe
329 File /oname=xxd.exe ${VIMSRC}\xxdw32.exe 332 File /oname=xxd.exe ${VIMSRC}\xxdw32.exe