From 34ba3ddf1825271d337c2314eaf92ff7c71b7d17 Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Mon, 30 Oct 2023 23:27:32 +0100 Subject: [PATCH] meson: Do not list Windows source files twice --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 53d2592caa..45e2f7d89f 100644 --- a/meson.build +++ b/meson.build @@ -860,7 +860,7 @@ libgeany = shared_library('geany', gen_src, win_src, osx_src, - host_machine.system() == 'windows' ? ['src/win32.c', 'src/win32.h'] : [ 'src/vte.c', 'src/vte.h' ], + host_machine.system() == 'windows' ? [] : [ 'src/vte.c', 'src/vte.h' ], soversion: '0', c_args: geany_cflags + [ '-DG_LOG_DOMAIN="Geany"' ], include_directories: [iscintilla],