faust icon indicating copy to clipboard operation
faust copied to clipboard

Update faust2caqt for QT6

Open olilarkin opened this issue 3 years ago • 1 comments

Without this change faust2caqt fails due to the usage of std::filesystem in QT6, with errors such as:

    { return QtPrivate::toFilesystemPath(absoluteFilePath()); }

if supporting macOS < 10.15 is important, then this might not be the best fix

olilarkin avatar Feb 20 '22 20:02 olilarkin

Actually, this is not enough.

QT6 has a dependency on librotli it seems and it's not in /usr/local/lib where the .app expects it.

It's possible to fix with

brew install librotli
sudo ln -s /opt/homebrew/lib/libbrotlicommon.1.dylib /usr/local/lib/

but that means the .app is not portable

olilarkin avatar Feb 20 '22 21:02 olilarkin