Closed jpwright closed 2 years ago
The fallback to Qt5 seems to work, but CMake doesn't know where to install the xdfwriter
library. I added it in https://github.com/sccn/liblsl/commit/b5c85a9b5caff92ce437e1642cf4e227141a4697
, but unless you build against the liblsl head, it will be a while until you'll notice it. For now, you could change line 15 in xdfwriter/CMakeLists.txt
to add_library(${PROJECT_NAME} SHARED xdfwriter.cpp)
.
I'm attempting to build LabRecorder on an arm64 device (Raspberry Pi 4 Model B Rev 1.4) running Debian 10, cmake 3.13.4, Qt 5.11.3.
I successfully built liblsl, but seems that CMake insists on searching for Qt6, even though it looks like there's some logic to fallback to Qt5 in CMakeLists.txt. Because there are no Qt6 packages for Debian, and I want to run LabRecorder "headless" anyway, it'd be nice to not have to wrangle a Qt6 installation if possible.