educelab / volume-cartographer

Volumetric processing toolkit and C++ libraries for the recovery and restoration of damaged cultural materials
GNU General Public License v3.0
63 stars 22 forks source link

Add full support for Homebrew dependencies #86

Closed csparker247 closed 5 months ago

csparker247 commented 5 months ago

The Homebrew-provided vtk now links against Qt6, which means we can now use Homebrew to provide all external dependencies:

# get source
git clone https://github.com/educelab/volume-cartographer.git
cd volume-cartographer

# install dependencies
brew bundle

# configure and build the project
cmake -S . -B build
cmake --build build

Changes