From 7ebdf14eb7f8de8c1d1142e37b659fca4fa02c54 Mon Sep 17 00:00:00 2001 From: Hayodea Hekol Date: Tue, 2 Dec 2025 16:11:17 -0400 Subject: [PATCH] CMake: Document install requirements --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3b2e046..8904980 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -117,6 +117,11 @@ find_package(PkgConfig REQUIRED) find_package(FLEX REQUIRED) find_package(BISON REQUIRED) +# It's important to note that as of 2025-12-02, RustICL on the RPi5 suddenly +# began requiring that the user running Smo be a member of the "render" group. +# We need to take that into account when we eventually build installer packages. +# Users may also need to be members of the "video" group. + # Find OpenCL 1.2 or higher: try find_package first, fall back to pkg-config find_package(OpenCL 1.2 QUIET) if(OpenCL_FOUND)