mirror of
https://git.citron-emu.org/citron/emulator
synced 2026-02-01 15:23:32 +00:00
Move updater files (updater_service.cpp, updater_service.h, updater_dialog.cpp, updater_dialog.h, updater_dialog.ui) into a WIN32 conditional block in CMakeLists.txt. This prevents MOC from processing updater_service.h on non-Windows platforms, resolving the class redefinition conflict between: - The real QObject-derived UpdaterService class (Windows only) - The stub UpdaterService class in updater_dialog.h (non-Windows) The updater functionality is now properly restricted to Windows platforms at the CMake build system level.