From 09e12992a4b62a5f7ab34b0fef4eb78e477c487e Mon Sep 17 00:00:00 2001 From: Alexey Rusakov Date: Thu, 13 Jul 2023 12:45:43 +0200 Subject: [PATCH] CMakeLists.txt: build with Qt 6 by default Qt 5 build is not really functional atm and is legacy anyway. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 515be195..858c3516 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -59,7 +59,7 @@ else() endforeach () endif() -option(BUILD_WITH_QT6 "Build Quotient with Qt 6 (EXPERIMENTAL)" OFF) +option(BUILD_WITH_QT6 "Build with Qt 6 (instead of Qt 5)" ON) if (BUILD_WITH_QT6) set(QtMinVersion "6.2")