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: 5a0df3862c19940705600b406fab2fd02b0812ac https://github.com/geany/geany/commit/5a0df3862c19940705600b406fab2fd02b0812...
Log Message: ----------- meson: Clean up VTE conditional
Modified Paths: -------------- meson.build
Modified: meson.build 8 lines changed, 7 insertions(+), 1 deletions(-) =================================================================== @@ -743,6 +743,12 @@ if host_machine.system() == 'darwin' endif endif
+vte_src = ['src/vte.c', 'src/vte.h'] +if host_machine.system() == 'windows' + # No VTE support on Windows + vte_src = [] +endif + install_headers( 'plugins/geanyfunctions.h', 'plugins/geanyplugin.h', @@ -857,10 +863,10 @@ libgeany = shared_library('geany', 'src/ui_utils.h', 'src/utils.c', 'src/utils.h', + vte_src, gen_src, win_src, osx_src, - 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).