Dalton Messmer
Dalton Messmer
No, Ubuntu 20.04 only has Qt 5.12 available through `apt`, so I'm using a 3rd party tool to install Qt 5.15. It's the same tool we use for the MSVC...
There's no real reason to put it off when it can be done now, especially since Linux is the only platform that isn't on Qt 5.15 yet.
The unused variable warnings were for static variables defined in the vorbis header, and defining `OV_EXCLUDE_STATIC_CALLBACKS` is how you prevent that header from defining them.
Currently experiencing this linker error on the MSVC builds: ``` [423/1461] Linking C shared module plugins\ladspa\dc_remove_1207.dll [424/1461] Generating D:/a/lmms/lmms/plugins/LadspaEffect/swh/ladspa/flanger_1191.c [425/1461] Linking CXX executable lmms.exe FAILED: lmms.exe src/lmms.lib C:\Windows\system32\cmd.exe /C "cd...
@tresf > is it a bad cache that it's trying to build with? No, a while back I think I deleted the MSVC vcpkg cache for my fork (called `vcpkg-x64-*`)...
Unlike most of our dependencies, lilv uses Meson and doesn't provide a CMake target. We are using the .pc pkg-config file to locate it and link it. So I think...
@DomClark This regression was probably introduced by #7004
I successfully built LMMS with Qt 6.8.0 on Linux without the `Core5Compat` module. When compiling, there were a number of deprecation warnings unrelated to that change that we should probably...
@tresf I'd be fine with that. Maybe Windows MSVC could be our Qt 6 build in the CI since it wouldn't be hard to update the dependency to Qt 6,...
It looks like `NotePlayHandleManager` is an arena allocation implementation for note play handles. From what I can tell, removing it would make audio threads less efficient and less realtime safe...