diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/colmap/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/colmap/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/colmap/vcpkg.json | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/vcpkg/ports/colmap/vcpkg.json b/vcpkg/ports/colmap/vcpkg.json new file mode 100644 index 0000000..a66e547 --- /dev/null +++ b/vcpkg/ports/colmap/vcpkg.json @@ -0,0 +1,75 @@ +{ + "name": "colmap", + "version": "3.12.6", + "description": "COLMAP is a general-purpose Structure-from-Motion (SfM) and Multi-View Stereo (MVS) pipeline with a graphical and command-line interface. It offers a wide range of features for reconstruction of ordered and unordered image collections. The software is licensed under the new BSD license.", + "homepage": "https://colmap.github.io/", + "license": "BSD-3-Clause", + "supports": "(linux | (windows & !static) | osx) & (x86 | x64 | arm64)", + "dependencies": [ + "boost-algorithm", + "boost-graph", + "boost-heap", + "boost-program-options", + "boost-property-map", + "boost-property-tree", + { + "name": "ceres", + "features": [ + "lapack", + "suitesparse" + ] + }, + "eigen3", + "faiss", + "freeimage", + "gflags", + "glog", + { + "name": "jasper", + "default-features": false + }, + "metis", + "poselib", + "sqlite3", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "default-features": [ + "gui" + ], + "features": { + "cgal": { + "description": "Build with CGAL.", + "dependencies": [ + "cgal" + ] + }, + "cuda": { + "description": "Build with CUDA.", + "dependencies": [ + "cuda", + "glew" + ] + }, + "cuda-redist": { + "description": "Redistributable CUDA support for common supported compute architectures.", + "dependencies": [ + "cuda", + "glew" + ] + }, + "gui": { + "description": "Build the GUI.", + "dependencies": [ + "glew", + "qt5-base" + ] + } + } +} |