From 0a6e4deed1a725d363bbc5b64cc84ca3acd63f22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Fri, 20 Aug 2021 18:49:29 -0400 Subject: [PATCH] QGCExternalLibs: Add qmdnsengine MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- QGCExternalLibs.pri | 51 +++++++++++++++++++++++++++++++++++++++++++++++ libs/qmdnsengine_export.h | 42 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 libs/qmdnsengine_export.h diff --git a/QGCExternalLibs.pri b/QGCExternalLibs.pri index 9622a64..b1ed235 100644 --- a/QGCExternalLibs.pri +++ b/QGCExternalLibs.pri @@ -150,6 +150,57 @@ INCLUDEPATH += \ libs/xz-embedded/linux/include/linux DEFINES += XZ_DEC_ANY_CHECK XZ_USE_CRC64 +# [REQUIRED] QMDNS Engine +HEADERS+= \ + libs/qmdnsengine_export.h \ + libs/qmdnsengine/src/src/bitmap_p.h \ + libs/qmdnsengine/src/src/browser_p.h \ + libs/qmdnsengine/src/src/cache_p.h \ + libs/qmdnsengine/src/src/hostname_p.h \ + libs/qmdnsengine/src/src/message_p.h \ + libs/qmdnsengine/src/src/prober_p.h \ + libs/qmdnsengine/src/src/provider_p.h \ + libs/qmdnsengine/src/src/query_p.h \ + libs/qmdnsengine/src/src/record_p.h \ + libs/qmdnsengine/src/src/resolver_p.h \ + libs/qmdnsengine/src/src/server_p.h \ + libs/qmdnsengine/src/src/service_p.h \ + libs/qmdnsengine/src/include/qmdnsengine/abstractserver.h \ + libs/qmdnsengine/src/include/qmdnsengine/bitmap.h \ + libs/qmdnsengine/src/include/qmdnsengine/browser.h \ + libs/qmdnsengine/src/include/qmdnsengine/cache.h \ + libs/qmdnsengine/src/include/qmdnsengine/dns.h \ + libs/qmdnsengine/src/include/qmdnsengine/hostname.h \ + libs/qmdnsengine/src/include/qmdnsengine/mdns.h \ + libs/qmdnsengine/src/include/qmdnsengine/message.h \ + libs/qmdnsengine/src/include/qmdnsengine/prober.h \ + libs/qmdnsengine/src/include/qmdnsengine/provider.h \ + libs/qmdnsengine/src/include/qmdnsengine/query.h \ + libs/qmdnsengine/src/include/qmdnsengine/record.h \ + libs/qmdnsengine/src/include/qmdnsengine/resolver.h \ + libs/qmdnsengine/src/include/qmdnsengine/server.h \ + libs/qmdnsengine/src/include/qmdnsengine/service.h +SOURCES += \ + libs/qmdnsengine/src/src/abstractserver.cpp \ + libs/qmdnsengine/src/src/bitmap.cpp \ + libs/qmdnsengine/src/src/browser.cpp \ + libs/qmdnsengine/src/src/cache.cpp \ + libs/qmdnsengine/src/src/dns.cpp \ + libs/qmdnsengine/src/src/hostname.cpp \ + libs/qmdnsengine/src/src/mdns.cpp \ + libs/qmdnsengine/src/src/message.cpp \ + libs/qmdnsengine/src/src/prober.cpp \ + libs/qmdnsengine/src/src/provider.cpp \ + libs/qmdnsengine/src/src/query.cpp \ + libs/qmdnsengine/src/src/record.cpp \ + libs/qmdnsengine/src/src/resolver.cpp \ + libs/qmdnsengine/src/src/server.cpp \ + libs/qmdnsengine/src/src/service.cpp +INCLUDEPATH += \ + libs/ \ + libs/qmdnsengine/src/include/ \ + libs/qmdnsengine/src/src/ + # # [REQUIRED] SDL dependency. Provides joystick/gamepad support. # The SDL is packaged with QGC for the Mac and Windows. Linux support requires installing the SDL diff --git a/libs/qmdnsengine_export.h b/libs/qmdnsengine_export.h new file mode 100644 index 0000000..bf44d93 --- /dev/null +++ b/libs/qmdnsengine_export.h @@ -0,0 +1,42 @@ +/* + * The MIT License (MIT) + * + * Copyright (c) 2017 Nathan Osman + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to + * deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + * IN THE SOFTWARE. + */ + +#ifndef QMDNSENGINE_EXPORT_H +#define QMDNSENGINE_EXPORT_H + +#include + +/* #undef BUILD_SHARED_LIBS */ + +#if defined(BUILD_SHARED_LIBS) +# if defined(QMDNSENGINE_LIBRARY) +# define QMDNSENGINE_EXPORT Q_DECL_EXPORT +# else +# define QMDNSENGINE_EXPORT Q_DECL_IMPORT +# endif +#else +# define QMDNSENGINE_EXPORT +#endif + +#endif // QMDNSENGINE_EXPORT_H