Enable documentation, gamepadd support and webdriver

This commit is contained in:
2025-11-29 18:08:53 +02:00
parent ed6abccf09
commit 469cc4919d
2 changed files with 11 additions and 8 deletions
+7 -8
View File
@@ -9,14 +9,14 @@ build() {
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_SKIP_INSTALL_RPATH=ON
-DUSE_LD_LLD=ON
-DPORT=GTK
-DLIB_INSTALL_DIR=/usr/lib
-DUSE_LIBBACKTRACE=OFF
-DUSE_LIBHYPHEN=OFF
-DENABLE_GAMEPAD=OFF
-DENABLE_GAMEPAD=ON
-DENABLE_MINIBROWSER=ON
-DENABLE_DOCUMENTATION=OFF
-DENABLE_WEBDRIVER=OFF
-DENABLE_DOCUMENTATION=ON
-DENABLE_SPEECH_SYNTHESIS=OFF
-DUSE_FLITE=OFF
-DENABLE_JOURNALD_LOG=OFF
@@ -27,11 +27,10 @@ build() {
# Use Clang as recommended by upstream
export CC=clang CXX=clang++
LDFLAGS+=" =fise-ld=lld"
cmake -B build-gtk4 "${options[@]}" -DUSE_GTK4=ON
cmake -B build-gtk3 "${options[@]}" -DUSE_GTK4=OFF
cmake -B build-gtk4 "${options[@]}" -DENABLE_WEBDRIVER=ON -DUSE_GTK4=ON
cmake -B build-gtk3 "${options[@]}" -DENABLE_WEBDRIVER=OFF -DUSE_GTK4=OFF
cmake --build build-gtk4
cmake --build build-gtk3
}