From 82c72cf76bc7848e90f02a6ad453aa0ea0dcb8e9 Mon Sep 17 00:00:00 2001 From: Anthony Serna Date: Tue, 5 Jan 2016 19:56:22 -0600 Subject: [PATCH] [UI] More DQt removals --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e565353ec3..61115b73d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,6 @@ option(TRY_X11 "Enables X11 Support" ON) option(USE_SHARED_ENET "Use shared libenet if found rather than Dolphin's soon-to-compatibly-diverge version" OFF) option(USE_UPNP "Enables UPnP port mapping support" ON) option(DISABLE_WX "Disable wxWidgets (use Qt or CLI interface)" OFF) -option(ENABLE_QT "Enable Qt (use the experimental Qt interface)" OFF) option(ENABLE_QT2 "Enable Qt2 (use the other experimental Qt interface)" OFF) option(ENABLE_PCH "Use PCH to speed up compilation" ON) option(ENABLE_LTO "Enables Link Time Optimization" OFF) @@ -754,7 +753,7 @@ else() mark_as_advanced(ICONV_INCLUDE_DIR ICONV_LIBRARIES) endif() -if(ENABLE_QT OR ENABLE_QT2) +if(ENABLE_QT2) find_package(Qt5Widgets REQUIRED) message("Found Qt version ${Qt5Core_VERSION}, enabling the Qt backend") endif()