From 56b3c5a05668e27d8193bd0daddf6c3446f3092b Mon Sep 17 00:00:00 2001 From: Alexander Griffin Date: Mon, 30 Jul 2018 16:10:34 +0200 Subject: [PATCH] Disable Minimaid by Default. We want to disabled it to make Travis compile again, also its only used for arcade cabs so we shouldnt use it for default compiling. --- CMake/DefineOptions.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMake/DefineOptions.cmake b/CMake/DefineOptions.cmake index 003bb27406..c9325003e7 100644 --- a/CMake/DefineOptions.cmake +++ b/CMake/DefineOptions.cmake @@ -54,14 +54,14 @@ else() endif() if(WIN32) - option(WITH_MINIMAID "Build with Minimaid Lights Support." ON) + option(WITH_MINIMAID "Build with Minimaid Lights Support." OFF) # Developer only option: connect to IRC to report the result. Only use with build servers. option(WITH_IRC_POST_HOOK "Report via IRC of the success afterwards." OFF) elseif(LINUX) # Builder beware: later versions of ffmpeg may break! option(WITH_SYSTEM_FFMPEG "Build with the system's FFMPEG, disabled build with bundled's FFMPEG" OFF) option(WITH_CRYSTALHD_DISABLED "Build FFMPEG without Crystal HD support." OFF) - option(WITH_MINIMAID "Build with Minimaid Lights Support." ON) + option(WITH_MINIMAID "Build with Minimaid Lights Support." OFF) option(WITH_TTY "Build with Linux TTY Input Support." OFF) option(WITH_PROFILING "Build with Profiling Support." OFF) option(WITH_GLES2 "Build with OpenGL ES 2.0 Support." ON)