build: Don't include sources either ...

The dependency already specifies the library to link with, no need
to also list the sources used to compile said library.
This commit is contained in:
Florian Müllner 2017-07-28 18:36:11 +01:00
parent 3093bdb077
commit 5b97727788

View File

@ -141,6 +141,5 @@ endif
libgvc_dep = declare_dependency( libgvc_dep = declare_dependency(
link_with: libgvc, link_with: libgvc,
include_directories: libgvc_inc, include_directories: libgvc_inc,
dependencies: libgvc_deps, dependencies: libgvc_deps
sources: libgvc_gir_sources + libgvc_no_gir_sources
) )