summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2020-12-15 12:31:38 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2020-12-15 12:46:59 +0000
commit99e0929d6cae6d841440e5a922c591afdd6f54fd (patch)
tree6ce6a999655c5d9535301050137af7750b3ce910 /tests
parente75e44bdcca3d687ee2b260910180caba6386095 (diff)
downloadgtk+-99e0929d6cae6d841440e5a922c591afdd6f54fd.tar.gz
build: Use a consistent style for Meson files
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build16
1 files changed, 10 insertions, 6 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 51b2311a80..783dd61914 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -131,13 +131,17 @@ test_args = ['-DGTK_SRCDIR="@0@"'.format(meson.current_source_dir())]
foreach t: gtk_tests
test_name = t.get(0)
test_srcs = ['@0@.c'.format(test_name), t.get(1, [])]
- executable(test_name, test_srcs,
- include_directories: [confinc, gdkinc],
- c_args: test_args + common_cflags,
- dependencies: [libgtk_dep, libm])
+ executable(test_name,
+ sources: test_srcs,
+ include_directories: [confinc, gdkinc],
+ c_args: test_args + common_cflags,
+ dependencies: [libgtk_dep, libm],
+ )
endforeach
if profiler_enabled
- executable('testperf', 'testperf.c',
- dependencies: [libsysprof_dep, platform_gio_dep, libm])
+ executable('testperf',
+ sources: 'testperf.c',
+ dependencies: [libsysprof_dep, platform_gio_dep, libm],
+ )
endif