Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Thu, 02 Nov 2023 22:53:33 UTC Commit: 34ba3ddf1825271d337c2314eaf92ff7c71b7d17 https://github.com/geany/geany/commit/34ba3ddf1825271d337c2314eaf92ff7c71b7d...
Log Message: ----------- meson: Do not list Windows source files twice
Modified Paths: -------------- meson.build
Modified: meson.build 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -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],
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).