From 68866f3174228194cd86c9caef1038e1721c96dc Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Wed, 10 Aug 2022 18:15:53 +1000 Subject: [PATCH] CMake: Disable nogui by default Not interested in moving it over to the new interface, and Qt can run the big picture UI anyway. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 077c3433b..3de96aad0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ set(CMAKE_OSX_DEPLOYMENT_TARGET "10.14.0" CACHE STRING "") # Global options. if(NOT ANDROID) - option(BUILD_NOGUI_FRONTEND "Build the NoGUI frontend" ON) + option(BUILD_NOGUI_FRONTEND "Build the NoGUI frontend" OFF) option(BUILD_QT_FRONTEND "Build the Qt frontend" ON) option(BUILD_REGTEST "Build regression test runner" OFF) option(ENABLE_CUBEB "Build with Cubeb audio output" ON) @@ -47,7 +47,7 @@ endif() if((LINUX OR FREEBSD) AND NOT ANDROID) option(USE_DRMKMS "Support DRM/KMS OpenGL contexts" OFF) option(USE_FBDEV "Support FBDev OpenGL contexts" OFF) - option(USE_EVDEV "Support EVDev controller interface" ON) + option(USE_EVDEV "Support EVDev controller interface" OFF) endif() # Force EGL when using Wayland