From 9edd334beb3ee39bbe0859e62e6bb8a06f3eab32 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Mon, 4 Jul 2022 14:09:35 -0400 Subject: [PATCH] Ladybird/Meta: Add libgl1-mesa-dev to build dependencies Without this package, CMake fails with the error: Could NOT find OpenGL (missing: OPENGL_INCLUDE_DIR) This package is listed in Qt's requirements here: https://doc.qt.io/qt-6/linux.html#requirements-for-development-host --- Ladybird/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ladybird/README.md b/Ladybird/README.md index 8b7945150c..5dc73dda6e 100644 --- a/Ladybird/README.md +++ b/Ladybird/README.md @@ -7,7 +7,7 @@ The Ladybird Web Browser is a browser using the SerenityOS LibWeb engine with a Qt6 development packages and a c++20-enabled compiler are required. On Debian/Ubuntu required packages include, but are not limited to: ``` -sudo apt install build-essential cmake ninja-build qt6-base-dev qt6-tools-dev-tools +sudo apt install build-essential cmake libgl1-mesa-dev ninja-build qt6-base-dev qt6-tools-dev-tools ``` For the c++ compiler, gcc-11 or clang-13 are required at a minimum for c++20 support.