refactor: Remove unneeed find_packate calls for Qt Components. Qt is found by Libaraies.cmake and accesable to all items in the src folder

This commit is contained in:
sithlord48
2025-03-05 21:27:50 -05:00
committed by Nick Bolton
parent 495331108b
commit 3a4bf35e22
6 changed files with 3 additions and 6 deletions

View File

@ -21,6 +21,9 @@ macro(configure_libs)
endif()
find_package(Qt6 ${REQUIRED_QT_VERSION} REQUIRED COMPONENTS Core Widgets Network)
if(UNIX AND NOT APPLE)
find_package(Qt6 ${REQUIRED_QT_VERSION} REQUIRED COMPONENTS DBus)
endif()
# Define the location of Qt deployment tool
if(WIN32)