diff options
author | Iñigo Martínez <inigomartinez@gmail.com> | 2021-09-09 09:31:54 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-09-10 08:39:37 +0000 |
commit | 93a1d7a60de147a61f0e343a6d8069ceb2a30ded (patch) | |
tree | 77f3e68137c17f7ab9501a30de26d0862e5df633 /libqcdm/tests | |
parent | fe53de8bdddb9c86e5b341811872a19e16225838 (diff) |
build,meson: Improve libqcdm build
`libqcdm`'s meson build files have been improved slightly by
removing unnecessary variables shortening their contents.
Diffstat (limited to 'libqcdm/tests')
-rw-r--r-- | libqcdm/tests/meson.build | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libqcdm/tests/meson.build b/libqcdm/tests/meson.build index e2a3a858..174f91a8 100644 --- a/libqcdm/tests/meson.build +++ b/libqcdm/tests/meson.build @@ -18,11 +18,6 @@ sources = files( test_units += [['test-qcdm', sources, true]] -incs = [ - top_inc, - libqcdm_inc, -] - deps = [ glib_deps, libqcdm_dep, @@ -32,7 +27,7 @@ foreach test_unit: test_units exe = executable( test_unit[0], test_unit[1], - include_directories: incs, + include_directories: top_inc, dependencies: deps, ) |