Skip to content

Commit

Permalink
Update ceres download URL in build script (colmap#1430)
Browse files Browse the repository at this point in the history
Co-authored-by: Johannes Schönberger <[email protected]>
  • Loading branch information
whuaegeanse and ahojnnes authored Feb 25, 2022
1 parent 29a1e36 commit b0ea854
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/python/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,11 +388,11 @@ def build_ceres_solver(args):
if os.path.exists(path):
return

url = "https://github.com/ceres-solver/ceres-solver/archive/1.14.0.zip"
archive_path = os.path.join(args.download_path, "ceres-solver-1.14.0.zip")
url = "https://github.com/ceres-solver/ceres-solver/archive/2.0.0.zip"
archive_path = os.path.join(args.download_path, "ceres-solver-2.0.0.zip")
download_zipfile(url, archive_path, args.build_path,
"26b255b7a9f330bbc1def3b839724a2a")
shutil.move(os.path.join(args.build_path, "ceres-solver-1.14.0"), path)
"589ec4b9461476285ae0332f2a74be48")
shutil.move(os.path.join(args.build_path, "ceres-solver-2.0.0"), path)

extra_config_args = [
"-DBUILD_TESTING=OFF",
Expand Down

0 comments on commit b0ea854

Please sign in to comment.