1 | // Copyright (C) 2022 Intel Corporation |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #ifndef QTCONFIGINCLUDE_H |
5 | #define QTCONFIGINCLUDE_H |
6 | |
7 | #if 0 |
8 | # pragma qt_sync_stop_processing |
9 | #endif |
10 | |
11 | #ifdef __cplusplus |
12 | # if __has_include(<version>) /* remove this check once Integrity, QNX have caught up */ |
13 | # include <version> |
14 | # endif |
15 | #endif |
16 | |
17 | #include <QtCore/qconfig.h> |
18 | |
19 | #ifdef QT_BOOTSTRAPPED |
20 | // qconfig-bootstrapped.h is not supposed to be a part of the synced header files. So we find it by |
21 | // the include path specified for Bootstrap library in the source tree instead of the build tree as |
22 | // it's done for regular header files. |
23 | #include "qconfig-bootstrapped.h" |
24 | #else |
25 | #include <QtCore/qtcore-config.h> |
26 | #endif |
27 | |
28 | #endif // QTCONFIGINCLUDE_H |
29 |