summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Rauter <rauter.gabriel@gmail.com>2021-05-04 11:16:28 +0200
committerGabriel Rauter <rauter.gabriel@gmail.com>2021-05-05 10:46:43 +0200
commitfbd8e5f410c45294bd2f13f86ac8100cab7ec7c2 (patch)
tree62a80f9f6c38f32846ed46e14444b2b6a8d731de
parent9fac2ec3c1ad949c3154848f2ada53e357a9bf79 (diff)
downloadbaobab-fbd8e5f410c45294bd2f13f86ac8100cab7ec7c2.tar.gz
Build GUI application on windows
Add win_subsystem: 'windows' keyword argument to the baobab executable in meson so it builds a GUI instead of a TUI on Windows. Needs meson >= 0.56
-rw-r--r--src/meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/meson.build b/src/meson.build
index b857f3d..d094418 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -49,5 +49,6 @@ executable('baobab', baobab_sources,
c_args: baobab_c_args,
dependencies: baobab_dependencies,
export_dynamic: true,
+ win_subsystem: 'windows',
install: true
)