summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Faye-Lund <erik.faye-lund@collabora.com>2023-03-09 10:19:39 +0100
committerErik Faye-Lund <erik.faye-lund@collabora.com>2023-03-10 09:36:59 +0100
commitba656c1071bcff96c1fe3ee1e5633aca5b12e498 (patch)
treec699b9899e6657535f370eb1a131470782eecd29
parentdb952f9ffd5eef714de1b94719a39cacbff09013 (diff)
downloadmesa-demos-ba656c1071bcff96c1fe3ee1e5633aca5b12e498.tar.gz
meson: use win_subsystem instead of gui_app
gui_app has been deprecated, so let's switch to win_subsystem for the same effect instead. Reviewed-by: Hoe Hao Cheng <haochengho12907@gmail.com>
-rw-r--r--src/wgl/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wgl/meson.build b/src/wgl/meson.build
index 766f6bca..8fa44ae9 100644
--- a/src/wgl/meson.build
+++ b/src/wgl/meson.build
@@ -49,6 +49,6 @@ executable(
executable(
'wincopy', files('wincopy.c', 'wglutil.c'),
dependencies: [dep_gl, idep_glad],
- gui_app: true,
+ win_subsystem: 'windows',
install: true
)