X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=CMakeLists.txt;h=5e7c0a1af3e1b4e001d14d61d5b12502fe6e49df;hb=3e0568817fc0bfc133f0135840bdc48777c95e08;hp=bcdff225ed04af6128e412f97c0215bd1aeb2132;hpb=e69f62f7b7c93b3cd3f3cdfcaa07e19ea7e6fe13;p=lyx.git diff --git a/CMakeLists.txt b/CMakeLists.txt index bcdff225ed..5e7c0a1af3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -153,14 +153,14 @@ if(LYX_DEPENDENCIES_DOWNLOAD) message(STATUS) set(LYX_DEPENDENCIES_DIR ${TOP_BINARY_DIR}/msvc2010-deps) message(STATUS "Using downloaded dependencies in ${LYX_DEPENDENCIES_DIR}") - set(deps_files lyx20-deps-msvc2010-x86.zip) + set(deps_files lyx20-deps-msvc2010.zip) + set(deps_server http://downloads.sourceforge.net/project/lyx/Win_installers/Dependencies) foreach(it ${deps_files}) set(already_downloaded already_downloaded-NOTFOUND CACHE PATH "downloaded" FORCE) find_file(already_downloaded ${it} "${LYX_DEPENDENCIES_DIR}/download") if(NOT already_downloaded) message(STATUS "Downloading ${it} ...") - file(DOWNLOAD http://sourceforge.net/projects/scusi/files/${it} ${LYX_DEPENDENCIES_DIR}/download/${it} - SHOW_PROGRESS STATUS status LOG log) + file(DOWNLOAD ${deps_server}/${it} ${LYX_DEPENDENCIES_DIR}/download/${it} SHOW_PROGRESS STATUS status LOG log) list(GET status 0 status_code) list(GET status 1 status_string) if(NOT status_code EQUAL 0)