diff --git a/CMakeLists.txt b/CMakeLists.txt index 396deb0..d79753b 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -73,11 +73,6 @@ endif () find_package(Qt6Keychain REQUIRED) -# TODO: we should really do this on all platforms anyway -if (WIN32) - find_package(KF6BreezeIcons REQUIRED) -endif () - add_subdirectory(external) add_subdirectory(launcher) diff --git a/launcher/CMakeLists.txt b/launcher/CMakeLists.txt index 37ac273..f3a241c 100644 --- a/launcher/CMakeLists.txt +++ b/launcher/CMakeLists.txt @@ -193,12 +193,6 @@ if (BUILD_WEBVIEW) target_compile_definitions(astra PRIVATE HAVE_WEBVIEW) endif () -if (WIN32) - target_link_libraries(astra PRIVATE - KF6::BreezeIcons - ) -endif () - if (WIN32) set_target_properties(astra PROPERTIES WIN32_EXECUTABLE TRUE @@ -225,4 +219,4 @@ if (WIN32) NO_UNSUPPORTED_PLATFORM_ERROR ) install(SCRIPT ${deploy_script}) -endif () \ No newline at end of file +endif () diff --git a/launcher/src/main.cpp b/launcher/src/main.cpp index e854dd7..d107441 100755 --- a/launcher/src/main.cpp +++ b/launcher/src/main.cpp @@ -20,11 +20,6 @@ #include "physis_logger.h" #include "utility.h" -#ifdef Q_OS_WIN -#include -#include -#endif - using namespace Qt::StringLiterals; int main(int argc, char *argv[])