Branch: refs/heads/master Author: Biswapriyo Nath nathbappai@gmail.com Committer: Biswapriyo Nath nathbappai@gmail.com Date: Wed, 03 Apr 2024 14:39:58 UTC Commit: 90968916af982c0a8f26d5a1b3f4623200312e9e https://github.com/geany/geany/commit/90968916af982c0a8f26d5a1b3f4623200312e...
Log Message: ----------- meson: Prevent showing console after running geany in Windows
Previously, a console window is shown in background when geany.exe is executed. This change fixes the above issue by specifying _windows_ subsystem type.
Modified Paths: -------------- meson.build
Modified: meson.build 3 lines changed, 2 insertions(+), 1 deletions(-) =================================================================== @@ -887,7 +887,8 @@ executable('geany', dependencies: deps, build_rpath: meson.build_root(), install_rpath: '$ORIGIN/../' + get_option('libdir'), - install: true + install: true, + win_subsystem: 'windows', )
i18n = import('i18n')
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).