Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: GitHub noreply@github.com Date: Sun, 28 Jul 2024 12:12:13 UTC Commit: 71969f600023a333bcd3b717a434082a7039f316 https://github.com/geany/geany/commit/71969f600023a333bcd3b717a434082a7039f3...
Log Message: ----------- Merge pull request #3811 from Biswa96/meson-fix-win-console-popup
meson: Prevent showing console after running geany in Windows
Modified Paths: -------------- .github/workflows/build.yml meson.build
Modified: .github/workflows/build.yml 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -107,7 +107,7 @@ jobs:
linux-meson: name: Linux Meson Build - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04
strategy: fail-fast: false
Modified: meson.build 5 lines changed, 3 insertions(+), 2 deletions(-) =================================================================== @@ -1,5 +1,5 @@ project('geany', 'c', 'cpp', - meson_version: '>= 0.53', + meson_version: '>= 0.56', version: '2.1', default_options : ['c_std=c11', 'cpp_std=c++17'])
@@ -904,7 +904,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).