diff options
author | Max Kellermann <max@musicpd.org> | 2020-01-18 19:45:56 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2020-01-18 19:56:16 +0100 |
commit | 75518672498504872322ad8b6a4abb564e298dd8 (patch) | |
tree | 969a92c8b2ae4317c43f5800ecca90a8079a9afe /src/config | |
parent | bdd316749514c353d7d46812f60c8dfa46b97f13 (diff) |
meson.build: move Log.cxx and LogBackend.cxx into a static library
Prevents compiling those sources many times, once for each debug
program using it.
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config/meson.build b/src/config/meson.build index 21a2068b2..a07d98663 100644 --- a/src/config/meson.build +++ b/src/config/meson.build @@ -12,6 +12,9 @@ config = static_library( 'Domain.cxx', 'Net.cxx', include_directories: inc, + dependencies: [ + log_dep, + ], ) config_dep = declare_dependency( |