zeroconf/avahi: move generic sources to lib/avahi

This commit is contained in:
Max Kellermann
2022-06-30 09:30:08 +02:00
parent 8783ed1981
commit 4564d251a8
14 changed files with 8 additions and 8 deletions

View File

@@ -18,10 +18,10 @@
*/ */
#include "Helper.hxx" #include "Helper.hxx"
#include "Client.hxx" #include "lib/avahi/Client.hxx"
#include "ErrorHandler.hxx" #include "lib/avahi/ErrorHandler.hxx"
#include "Publisher.hxx" #include "lib/avahi/Publisher.hxx"
#include "Service.hxx" #include "lib/avahi/Service.hxx"
#include "util/RuntimeError.hxx" #include "util/RuntimeError.hxx"
#include "Log.hxx" #include "Log.hxx"

View File

@@ -7,10 +7,10 @@ endif
avahi = static_library( avahi = static_library(
'avahi', 'avahi',
'Helper.cxx', 'Helper.cxx',
'Client.cxx', '../../lib/avahi/Client.cxx',
'Error.cxx', '../../lib/avahi/Error.cxx',
'Poll.cxx', '../../lib/avahi/Poll.cxx',
'Publisher.cxx', '../../lib/avahi/Publisher.cxx',
include_directories: inc, include_directories: inc,
dependencies: [ dependencies: [
log_dep, log_dep,