Qt Utilities  5.6.0
Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models
importplugin.h
Go to the documentation of this file.
1 #ifndef MISC_UTILS_IMPORT_PLUGIN_H
2 #define MISC_UTILS_IMPORT_PLUGIN_H
3 
4 #include "resources/config.h"
5 
6 #ifdef QT_STATIC
7 # if defined(GUI_QTWIDGETS) || defined(GUI_QTQUICK)
8 # include <QtPlugin>
9 # ifdef Q_OS_WIN32
10 Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
11 # endif
12 # ifdef SVG_SUPPORT
13 Q_IMPORT_PLUGIN(QSvgPlugin)
14 # endif
15 # ifdef SVG_ICON_SUPPORT
16 Q_IMPORT_PLUGIN(QSvgIconPlugin)
17 # endif
18 # endif
19 #endif
20 
21 #endif // MISC_UTILS_IMPORT_PLUGIN_H