From 592cadbc4721808ce8102f384004878aace16cea Mon Sep 17 00:00:00 2001 From: ValeryStk Date: Tue, 17 Sep 2024 12:08:45 +0300 Subject: [PATCH] Update CMakeLists.txt --- gui/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/CMakeLists.txt b/gui/CMakeLists.txt index f325381..a06a7db 100644 --- a/gui/CMakeLists.txt +++ b/gui/CMakeLists.txt @@ -25,7 +25,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) #endif() find_package(QT NAMES Qt6 Qt5 COMPONENTS Widgets QUIET) -if(QT_NOT_FOUND) +if(NOT QT_FOUND) return() endif() find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Widgets REQUIRED)