Skip to content

Commit 68866f3

Browse files
committed
CMake: Disable nogui by default
Not interested in moving it over to the new interface, and Qt can run the big picture UI anyway.
1 parent 4025350 commit 68866f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ set(CMAKE_OSX_DEPLOYMENT_TARGET "10.14.0" CACHE STRING "")
2222

2323
# Global options.
2424
if(NOT ANDROID)
25-
option(BUILD_NOGUI_FRONTEND "Build the NoGUI frontend" ON)
25+
option(BUILD_NOGUI_FRONTEND "Build the NoGUI frontend" OFF)
2626
option(BUILD_QT_FRONTEND "Build the Qt frontend" ON)
2727
option(BUILD_REGTEST "Build regression test runner" OFF)
2828
option(ENABLE_CUBEB "Build with Cubeb audio output" ON)
@@ -47,7 +47,7 @@ endif()
4747
if((LINUX OR FREEBSD) AND NOT ANDROID)
4848
option(USE_DRMKMS "Support DRM/KMS OpenGL contexts" OFF)
4949
option(USE_FBDEV "Support FBDev OpenGL contexts" OFF)
50-
option(USE_EVDEV "Support EVDev controller interface" ON)
50+
option(USE_EVDEV "Support EVDev controller interface" OFF)
5151
endif()
5252

5353
# Force EGL when using Wayland

0 commit comments

Comments
 (0)