From bb11c4676bd38b6d33d5cb7f90c5218639ac9c7c Mon Sep 17 00:00:00 2001 From: deepend Date: Wed, 25 Feb 2026 01:47:32 -0700 Subject: [PATCH] Cleaned up src/fe-gtk/meson.build by removing an outdated commented-out WinRT build block in the Windows section, leaving only active build logic. Removed an inline TODO comment from the gnome.compile_resources call to keep the Meson configuration concise and focused on current settings. --- src/fe-gtk/meson.build | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/fe-gtk/meson.build b/src/fe-gtk/meson.build index 26129961..dc4a6b5b 100644 --- a/src/fe-gtk/meson.build +++ b/src/fe-gtk/meson.build @@ -77,12 +77,6 @@ if host_machine.system() == 'windows' zoitechat_gtk_sources += 'notifications/notification-windows.c' zoitechat_gtk_deps += cc.find_library('dwmapi', required: true) - # TODO: mingw doesn't have these headers or libs - # add_languages('cpp') - # shared_module('hcnotifications-winrt', - # sources: 'notifications/notification-winrt.cpp' - #) - else zoitechat_gtk_sources += 'notifications/notification-freedesktop.c' endif @@ -102,7 +96,7 @@ endif resources = gnome.compile_resources('resources', '../../data/zoitechat.gresource.xml', - source_dir: '../../data', # TODO: Fix upstream + source_dir: '../../data', c_name: 'zoitechat', extra_args: ['--manual-register'] )