1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-17 03:50:03 +02:00

gui/CMakeLists.txt: Drop the requirement for QT 5.11

This commit is contained in:
Henrik Hautakoski 2020-04-10 10:48:26 +02:00
parent 3c21e27f45
commit 40ddff41db

View file

@ -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 )
# --------------------------------