1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
| >> vim build/python/dependencies.yaml libtiff: version: "4.6.0" description: "TIFF library and utilities" source: type: git url: https://gitlab.com/libtiff/libtiff.git ref: "v4.6.0" build: system: cmake options: tiff-tools: OFF tiff-tests: OFF tiff-contrib: OFF tiff-docs: OFF HAVE_LD_VERSION_SCRIPT: OFF cxx: OFF lzma: OFF jbig: OFF zstd: OFF webp: OFF lerc: OFF libdeflate: OFF dependencies: - zlib platforms: all >> python build/python/build_ocean_3rdparty.py --with opencv --config release Total builds: 19 Cumulative build time: 13m 59s Wall-clock time: 10m 46s Parallelism factor: 1.3x
✓ Build completed successfully!
══════════════════════════════════════════════════════════════════════ Next steps ══════════════════════════════════════════════════════════════════════ Third-party libraries installed at: /home/mirror/workspace/ocean/ocean_3rdparty/install
Set OCEAN_THIRDPARTY_PATH so the Ocean Gradle apps (e.g. the PointTracker demo) can find them:
bash / zsh: export OCEAN_THIRDPARTY_PATH="/home/mirror/workspace/ocean/ocean_3rdparty/install"
Alternatively, pass the path explicitly to build_ocean.py: python build/python/build_ocean.py --third-party-dir /home/mirror/workspace/ocean/ocean_3rdparty/install ══════════════════════════════════════════════════════════════════════
|