I want to build with video-ffmpeg, how do I do it?
Discussion
$ cargo build --features=lang-cjk,video-ffmpeg --release
You don't strictly have to use '--release' anymore, but it does optimize the whole thing if you do. The dependent crates are now always built in release/optimized mode (since those don't get recompiled every time you edit a line and compile again, the cost of doing it isn't borne as badly as if the main crate were optimized every time you just changed a few lines and recompiled).
Hi thanks for the help. It builds fine but then it complains about:
- on Nixos not finding libwayland-client or something
- on Fedora 38 it complains about the GlibC version
I think there is some gotcha with the NixOS build that can be worked around but the weirdest thing is Fedora complaining about Glibc version even though it built. Both issues seem egui related.
Not at home right now but will reproduce first chance I get.