1/*
2
3Settings about which desktops have support enabled.
4
5*/
6
7#ifndef CONFIG_VCLPLUG_H
8#define CONFIG_VCLPLUG_H
9
10/**
11 * Set, if the platform uses X11 code.
12 */
13#define USING_X11 0
14
15/**
16 * Set the enabled platform plugins
17 */
18#define ENABLE_GTK3 0
19#define ENABLE_GTK3_KDE5 0
20#define ENABLE_HEADLESS 0
21#define ENABLE_KF5 0
22#define ENABLE_QT5 0
23
24/**
25 * Additional settings for the plugins
26 */
27#define ENABLE_GSTREAMER_1_0 0
28#define QT5_HAVE_GOBJECT 0
29#define QT5_USING_X11 0
30#define QT5_HAVE_XCB_ICCCM 0
31
32#endif
33