summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@endlessos.org>2022-05-06 13:16:26 +0100
committerPhilip Withnall <pwithnall@endlessos.org>2022-05-06 13:55:28 +0100
commitbd1781a356863b273be40d5df4c5b52a9c48d18e (patch)
tree93ef4621e0d4c170267a87dcb02fca8a2838d7f7 /tests
parent374be41433af5cdc41b664ceaa76e0b571ae5244 (diff)
downloadglib-bd1781a356863b273be40d5df4c5b52a9c48d18e.tar.gz
build: Stop using Meson features deprecated in Meson <0.60
This clears some Meson warnings. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 42dc26ec1..cd41a7f3f 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -46,7 +46,7 @@ test_extra_programs = {
if host_machine.system() == 'windows'
test_extra_programs += {
- 'spawn-test-win32-gui' : {'gui_app' : true}
+ 'spawn-test-win32-gui' : {'win_subsystem' : 'windows'}
}
endif
@@ -119,6 +119,6 @@ foreach program_name, extra_args : test_extra_programs
dependencies : common_deps + extra_args.get('dependencies', []),
install_dir : installed_tests_execdir,
install : install,
- gui_app : extra_args.get('gui_app', false),
+ win_subsystem : extra_args.get('win_subsystem', 'console'),
)
endforeach