Warning, /libraries/libtmdbqt/src/tmdbqt_export.h.cmake is written in an unsupported language. File is not indexed.

0001 /*
0002     Copyright (c) 2009 Eckhart Wörner <ewoerner@kde.org>
0003     Copyright (c) 2009 Frederik Gladhorn <gladhorn@kde.org>
0004     Copyright (c) 2011 Tudorica Constantin-Alexandru <tudalex@gmail.com>
0005 
0006     This library is free software; you can redistribute it and/or
0007     modify it under the terms of the GNU Lesser General Public
0008     License as published by the Free Software Foundation; either
0009     version 2.1 of the License, or (at your option) version 3, or any
0010     later version accepted by the membership of KDE e.V. (or its
0011     successor approved by the membership of KDE e.V.), which shall
0012     act as a proxy defined in Section 6 of version 3 of the license.
0013 
0014     This library is distributed in the hope that it will be useful,
0015     but WITHOUT ANY WARRANTY; without even the implied warranty of
0016     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0017     Lesser General Public License for more details.
0018 
0019     You should have received a copy of the GNU Lesser General Public
0020     License along with this library.  If not, see <http://www.gnu.org/licenses/>.
0021 
0022 */
0023 #ifndef TMDBQTCLIENT_EXPORT_H
0024 #define TMDBQTCLIENT_EXPORT_H
0025 
0026 #include <QtCore/QtGlobal>
0027 
0028 #cmakedefine01 TMDBQT_STATIC_BUILD
0029 
0030 #ifndef TMDBQT_EXPORT
0031 # if TMDBQT_STATIC_BUILD
0032    /* No export/import for static libraries */
0033 #  define TMDBQT_EXPORT
0034 # elif defined(TMDBQT_LIB_MAKEDLL)
0035    /* We are building this library */
0036 #  define TMDBQT_EXPORT Q_DECL_EXPORT
0037 # else
0038    /* We are using this library */
0039 #  define TMDBQT_EXPORT Q_DECL_IMPORT
0040 # endif
0041 #endif
0042 
0043 #endif