[gedit] meson: set gui_app for gedit executable



commit 6516534f917fb783ddd7090d077b1d3ed86e2fb6
Author: Luca Bacci <luca bacci982 gmail com>
Date:   Tue Jul 2 18:15:02 2019 +0000

    meson: set gui_app for gedit executable
    
    Meson defaults to CONSOLE subsystem for PE executables, so a command prompt
    shows up anytime the executable is launched. Setting gui_app to true instructs
    Meson to set the PE subsystem to WINDOWS, the right subsystem for graphical
    applications.
    
    Reference:
    http://mesonbuild.com/Reference-manual.html#executable

 gedit/meson.build | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/gedit/meson.build b/gedit/meson.build
index b6bf8a455..2b46aa462 100644
--- a/gedit/meson.build
+++ b/gedit/meson.build
@@ -322,4 +322,5 @@ gedit_exe = executable(
   install: true,
   install_dir: bindir,
   install_rpath: pkglibdir,
+  gui_app: true,
 )


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]