tungsten icon indicating copy to clipboard operation
tungsten copied to clipboard

macOS build instructions

Open hyperknot opened this issue 7 years ago • 2 comments

If anyone is trying to build this one macOS:

brew install eigen openexr libbtbb  
# possibly others, check what is missing at the end of CMake

brew uninstall openvdb
# it doesn't build with openvdb, probably this can be switched off in CMake with a switch

export CMAKE_PREFIX_PATH=/Users/../Qt/5.10.1/clang_64

rm -rf build
mkdir build
cd build

mkdir release
cd release
cmake -DCMAKE_BUILD_TYPE=Release ../..

make -j8

I don't know what OpenVDB is used for, but making sure it's not included makes it compile without errors.

hyperknot avatar Feb 15 '18 23:02 hyperknot

  • Also, the editor is buggy as it's not detecting Retina resolution.

hyperknot avatar Feb 16 '18 00:02 hyperknot

Not sure what's going on, but I just built successfully on macOS following the "Windows + MinGW" instructions.

111116 avatar Mar 06 '20 04:03 111116