summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DolphinQt2/CMakeLists.txt10
1 files changed, 8 insertions, 2 deletions
diff --git a/Source/Core/DolphinQt2/CMakeLists.txt b/Source/Core/DolphinQt2/CMakeLists.txt
index 04726b8434..7aa619b63f 100644
--- a/Source/Core/DolphinQt2/CMakeLists.txt
+++ b/Source/Core/DolphinQt2/CMakeLists.txt
@@ -1,5 +1,11 @@
-find_package(Qt5Widgets REQUIRED)
-find_Package(Qt5Gui REQUIRED)
+find_package(Qt5Widgets)
+find_package(Qt5Gui)
+
+if(NOT Qt5Widgets_FOUND OR NOT Qt5Gui_FOUND)
+ message(FATAL_ERROR "Could not find Qt5, which is required to build the DolphinQt2 frontend. If you don't want to build the Qt frontend, pass -DENABLE_QT2=False to
+CMake.")
+endif()
+
set_property(TARGET Qt5::Core PROPERTY INTERFACE_COMPILE_FEATURES "")
message(STATUS "Found Qt version ${Qt5Core_VERSION}")