aboutsummaryrefslogtreecommitdiff
path: root/third-party/cmake/GetBinaryDeps.cmake
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-02-16 16:53:34 +0100
committerGitHub <noreply@github.com>2017-02-16 16:53:34 +0100
commit4a107a11a1c708c2fb8e40b6464f080aca111767 (patch)
treefad00ed46524ee9918eda968d5dcf368a7b1a25d /third-party/cmake/GetBinaryDeps.cmake
parenta05690ae2d1caa7b94d3ab4367515714722d4730 (diff)
parent0095ad5693b0b9a8d74936738041ab6f414d399c (diff)
downloadrneovim-4a107a11a1c708c2fb8e40b6464f080aca111767.tar.gz
rneovim-4a107a11a1c708c2fb8e40b6464f080aca111767.tar.bz2
rneovim-4a107a11a1c708c2fb8e40b6464f080aca111767.zip
Merge #6105 from justinmk/win32-bindeps
Windows: ship with common tools
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()