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#include <QtCore/qconfig.h>
12
13#ifdef QT_BOOTSTRAPPED
14// qconfig-bootstrapped.h is not supposed to be a part of the synced header files. So we find it by
15// the include path specified for Bootstrap library in the source tree instead of the build tree as
16// it's done for regular header files.
17#include "qconfig-bootstrapped.h"
18#else
19#include <QtCore/qtcore-config.h>
20#endif
21
22#endif // QTCONFIGINCLUDE_H
23

source code of qtbase/src/corelib/global/qtconfiginclude.h