Skip to content

Commit

Permalink
Add quiet param to find_package
Browse files Browse the repository at this point in the history
  • Loading branch information
matinlotfali committed Aug 10, 2024
1 parent aa807a6 commit 327686a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if(${QT_MAJOR_VERSION} EQUAL 6)
find_package(KWin ${KF_MIN_VERSION} REQUIRED COMPONENTS kwineffects)
message(STATUS "Found KWin Version: ${KWin_VERSION}")
else()
find_package(KWinEffects ${KF_MIN_VERSION} REQUIRED COMPONENTS kwineffects kwinglutils)
find_package(KWinEffects REQUIRED COMPONENTS kwineffects kwinglutils)
message(STATUS "Found KWin Version: ${KWinEffects_VERSION}")
endif ()
include(cmake/info.cmake)
Expand Down
2 changes: 1 addition & 1 deletion cmake/qtversion.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
find_package(KF6 COMPONENTS ConfigWidgets)
find_package(KF6 QUIET COMPONENTS ConfigWidgets)

if(KF6_FOUND)
set(QT_MIN_VERSION "6.4.0")
Expand Down

0 comments on commit 327686a

Please sign in to comment.