Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-07-15 08:28:35

0001 // Copyright (C) 2022 Intel Corporation
0002 // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
0003 // Qt-Security score:significant reason:default
0004 
0005 #ifndef QTCONFIGINCLUDE_H
0006 #define QTCONFIGINCLUDE_H
0007 
0008 #if 0
0009 #  pragma qt_sync_stop_processing
0010 #endif
0011 
0012 #ifdef __cplusplus
0013 # if __has_include(<version>) /* remove this check once Integrity, QNX have caught up */
0014 #  include <version>
0015 # endif
0016 #endif
0017 
0018 #include <QtCore/qconfig.h>
0019 
0020 #ifdef QT_BOOTSTRAPPED
0021 // qconfig-bootstrapped.h is not supposed to be a part of the synced header files. So we find it by
0022 // the include path specified for Bootstrap library in the source tree instead of the build tree as
0023 // it's done for regular header files.
0024 #include "qconfig-bootstrapped.h"
0025 #else
0026 #include <QtCore/qtcore-config.h>
0027 #endif
0028 
0029 #endif // QTCONFIGINCLUDE_H