Browse Source

QGCExternalLibs: Add qmdnsengine

Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
QGC4.4
Patrick José Pereira 4 years ago committed by Don Gagne
parent
commit
0a6e4deed1
  1. 51
      QGCExternalLibs.pri
  2. 42
      libs/qmdnsengine_export.h

51
QGCExternalLibs.pri

@ -150,6 +150,57 @@ INCLUDEPATH += \
libs/xz-embedded/linux/include/linux libs/xz-embedded/linux/include/linux
DEFINES += XZ_DEC_ANY_CHECK XZ_USE_CRC64 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. # [REQUIRED] SDL dependency. Provides joystick/gamepad support.
# The SDL is packaged with QGC for the Mac and Windows. Linux support requires installing the SDL # The SDL is packaged with QGC for the Mac and Windows. Linux support requires installing the SDL

42
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 <QtCore/qglobal.h>
/* #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
Loading…
Cancel
Save