diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-02-10 00:53:36 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-02-16 16:23:18 +0100 |
commit | 2fbc42aa8a0a75e9c141160f58583e871dd469d1 (patch) | |
tree | b9c6dfbb5b30a10d0efb2b272cee2a3cbe9cd1ac /src | |
parent | 7caaa106e3fa59bfaad67484a63a6c7c847347af (diff) | |
download | rneovim-2fbc42aa8a0a75e9c141160f58583e871dd469d1.tar.gz rneovim-2fbc42aa8a0a75e9c141160f58583e871dd469d1.tar.bz2 rneovim-2fbc42aa8a0a75e9c141160f58583e871dd469d1.zip |
win/package: provide common tools
References #1507
Closes #1811
curl.exe curl_7_52_1_openssl_nghttp2_x86.7z from https://winampplugins.co.uk/curl/
curl 7.52.1 (x86_64-pc-win32) libcurl/7.52.1 OpenSSL/1.0.2k zlib/1.2.8 nghttp2/1.19.0
Protocols: dict file ftp ftps gopher http https imap imaps ldap pop3 pop3s rtsp smb smbs smtp smtps telnet tftp
Features: AsynchDNS IPv6 Largefile NTLM SSL libz HTTP2 HTTPS-proxy
tidy.exe http://tidybatchfiles.info
HTML Tidy for Windows
tidy version 5.3.14 date 2017.01.09 compiled for Windows win32 x86.
7za.exe http://www.7-zip.org
7-Zip 16.04 (2016-10-04)
cat.exe http://unxutils.sourceforge.net
from gVim:
diff.exe GNU diffutils version 2.7
xxd.exe V1.10 27oct98 by Juergen Weigert (Win32)
ye olde hacked-up tee.exe
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index 5a658691ce..20650315e9 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -299,7 +299,7 @@ if(WIN32) install(DIRECTORY ${PROJECT_BINARY_DIR}/windows_runtime_deps/ DESTINATION ${CMAKE_INSTALL_BINDIR}) - foreach(BIN win32yank.exe) + foreach(BIN cat.exe curl.exe diff.exe tee.exe tidy.exe win32yank.exe) unset(BIN_PATH CACHE) find_program(BIN_PATH ${BIN}) if(NOT BIN_PATH) |