refactor: use QtXml in place of pugixml

This commit is contained in:
sithlord48
2025-03-26 20:39:25 -04:00
committed by Nick Bolton
parent 84b433853a
commit fdf1df1a30
7 changed files with 40 additions and 50 deletions

View File

@ -21,7 +21,7 @@ macro(configure_libs)
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)
find_package(Qt6 ${REQUIRED_QT_VERSION} REQUIRED COMPONENTS DBus Xml)
endif()
# Define the location of Qt deployment tool
@ -160,9 +160,6 @@ macro(configure_unix_libs)
message(WARNING "pkg-config not found, skipping wayland libraries")
endif()
find_package(pugixml REQUIRED)
find_package(PkgConfig)
if(PKG_CONFIG_FOUND)
pkg_check_modules(lib_glib REQUIRED IMPORTED_TARGET glib-2.0)