install_deps.cmake 522 B

123456789101112131415
  1. include("${CMAKE_CURRENT_LIST_DIR}/scripts/helpers.cmake")
  2. set(INSTALL_DIR "${ROOT_DIR}/install")
  3. set(SERVER "https://github.com/ethereum/cpp-dependencies/releases/download/vc140/")
  4. function(download_and_install PACKAGE_NAME)
  5. download_and_unpack("${SERVER}${PACKAGE_NAME}.tar.gz" ${INSTALL_DIR})
  6. endfunction(download_and_install)
  7. download_and_install("boost-1.61")
  8. download_and_install("curl-7.4.2")
  9. download_and_install("leveldb-1.2")
  10. download_and_install("microhttpd-0.9.2")
  11. download_and_install("miniupnpc-1.9")