diff options
author | David Robillard <d@drobilla.net> | 2024-11-24 13:19:54 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-11-24 20:03:48 -0500 |
commit | 8366ebd3a153b25273176c75f4623d7a592144c5 (patch) | |
tree | d953a42ba47d85fe3b6095ab93aa91cce9111e4b /test/cpp/meson.build | |
parent | 8ef53b017d085a36bab7580111b8169ae07a0666 (diff) | |
download | lilv-8366ebd3a153b25273176c75f4623d7a592144c5.tar.gz lilv-8366ebd3a153b25273176c75f4623d7a592144c5.tar.bz2 lilv-8366ebd3a153b25273176c75f4623d7a592144c5.zip |
Use zix_expand_environment_strings()
The removed test was the last that needed access to private code, so also
remove all of the build complication around ensuring there's a static library
to test (avoiding a double build in many cases).
Diffstat (limited to 'test/cpp/meson.build')
-rw-r--r-- | test/cpp/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/meson.build b/test/cpp/meson.build index 5b8169c..1d697fa 100644 --- a/test/cpp/meson.build +++ b/test/cpp/meson.build @@ -30,7 +30,7 @@ test( 'test_lilv_hpp', files('test_lilv_hpp.cpp'), cpp_args: test_args + cpp_suppressions, - dependencies: [lv2_dep, lilv_static_dep], + dependencies: [lv2_dep, lilv_dep], include_directories: include_directories('../../src'), ), suite: 'unit', |