aboutsummaryrefslogtreecommitdiff
path: root/third-party/cmake/GetBinaryDeps.cmake
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-02-10 00:53:36 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-02-16 16:23:18 +0100
commit2fbc42aa8a0a75e9c141160f58583e871dd469d1 (patch)
treeb9c6dfbb5b30a10d0efb2b272cee2a3cbe9cd1ac /third-party/cmake/GetBinaryDeps.cmake
parent7caaa106e3fa59bfaad67484a63a6c7c847347af (diff)
downloadrneovim-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 'third-party/cmake/GetBinaryDeps.cmake')
-rw-r--r--third-party/cmake/GetBinaryDeps.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/third-party/cmake/GetBinaryDeps.cmake b/third-party/cmake/GetBinaryDeps.cmake
index cdc8ac051e..1d98177924 100644
--- a/third-party/cmake/GetBinaryDeps.cmake
+++ b/third-party/cmake/GetBinaryDeps.cmake
@@ -21,7 +21,7 @@ function(GetBinaryDep)
set(URL ${${URL_VARNAME}})
set(HASH ${${HASH_VARNAME}})
if(NOT URL OR NOT HASH )
- message(FATAL_ERROR "${URL_VARNAME} and ${HASH_VARNAME} must be set")
+ message(FATAL_ERROR "${URL_VARNAME} and ${HASH_VARNAME} must be set")
endif()
ExternalProject_Add(${_gettool_TARGET}
@@ -41,6 +41,6 @@ function(GetBinaryDep)
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ${CMAKE_COMMAND} -E make_directory ${DEPS_INSTALL_DIR}/bin
- COMMAND "${_gettool_INSTALL_COMMAND}")
+ COMMAND "${_gettool_INSTALL_COMMAND}")
list(APPEND THIRD_PARTY_DEPS ${__gettool_TARGET})
endfunction()