From 40ddff41dbaee9043804e0985296c6237aadedb1 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 10 Apr 2020 10:48:26 +0200 Subject: [PATCH] gui/CMakeLists.txt: Drop the requirement for QT 5.11 --- gui/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/CMakeLists.txt b/gui/CMakeLists.txt index 8c330ed..cb65710 100644 --- a/gui/CMakeLists.txt +++ b/gui/CMakeLists.txt @@ -20,7 +20,7 @@ set( PROGRAM_SRC add_executable( ${PROGRAM_EXE} ${PROGRAM_SRC} ) # Libraries -find_package( Qt5 5.11 COMPONENTS Concurrent Core Widgets REQUIRED ) +find_package( Qt5 COMPONENTS Concurrent Core Widgets REQUIRED ) target_link_libraries( ${PROGRAM_EXE} Qt5::Concurrent Qt5::Core Qt5::Widgets common ) # --------------------------------