Browse Source

Update provisioning to CMake 3.6.0.

pull/681/head
João Matos 9 years ago
parent
commit
d4b1b091c6
  1. 5
      build/scripts/Provision.lua

5
build/scripts/Provision.lua

@ -37,8 +37,8 @@ function download_cmake()
error("Error downloading CMake for unknown system") error("Error downloading CMake for unknown system")
end end
local url = "https://cmake.org/files/v3.4/cmake-3.4.0-" .. system local url = "https://cmake.org/files/v3.6/cmake-3.6.0-" .. system
local file = "cmake.zip" local file = "cmake" .. path.getextension(system)
if not os.isfile(file) then if not os.isfile(file) then
download(url, file) download(url, file)
@ -93,6 +93,7 @@ function provision_osx()
if compile_llvm then if compile_llvm then
execute("brew cask install virtualbox vagrant") execute("brew cask install virtualbox vagrant")
end end
download_cmake()
end end
if _ACTION == "provision" then if _ACTION == "provision" then

Loading…
Cancel
Save