diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-02-03 09:02:06 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-02-03 09:02:06 -0500 |
commit | 7a9bc1f1d8b822394a53d8736cc324937e609149 (patch) | |
tree | 52294add94570d8be3fa81d39491b8cc3581f29b | |
parent | 9cc6f3ee29fa9d3c5a5257d5b89943366e409f3d (diff) | |
download | gtk+-7a9bc1f1d8b822394a53d8736cc324937e609149.tar.gz |
Link the data url tests statically
Thats the cleaner way to test internal apis.
-rw-r--r-- | testsuite/css/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/css/meson.build b/testsuite/css/meson.build index 82b8984276..f8d13fe548 100644 --- a/testsuite/css/meson.build +++ b/testsuite/css/meson.build @@ -29,10 +29,10 @@ test('api', test_api, suite: 'css', ) -test_data = executable('data', ['data.c', '../../gtk/css/gtkcssdataurl.c'], +test_data = executable('data', 'data.c', c_args: common_cflags, include_directories: [confinc, ], - dependencies: gtk_deps, + dependencies: libgtk_static_dep, install: get_option('install-tests'), install_dir: testexecdir, ) |