Add pragmas to the header files that needs to be skipped by syncqt

Add the qt_sync_skip_header_check and qt_sync_stop_processing pragmas
to:
  qtbase/src/corelib/global/qsystemdetection.h
  qtbase/src/corelib/global/qprocessordetection.h
  qtbase/src/corelib/global/qcompilerdetection.h
to avoid checking by synqt. These files were previously blacklisted
in syncqt.profile.

Change-Id: I268a3063e7eafb9a78e9e8d1cb67cd2def490b35
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Alexey Edelev 2022-06-10 16:08:39 +02:00
parent c2c4a21374
commit ad6aaa7727
3 changed files with 15 additions and 0 deletions

View File

@ -6,6 +6,11 @@
# include <QtCore/qglobal.h>
#endif
#if 0
#pragma qt_sync_skip_header_check
#pragma qt_sync_stop_processing
#endif
#ifndef QCOMPILERDETECTION_H
#define QCOMPILERDETECTION_H

View File

@ -6,6 +6,11 @@
# include <QtCore/qglobal.h>
#endif
#if 0
#pragma qt_sync_skip_header_check
#pragma qt_sync_stop_processing
#endif
#ifndef QPROCESSORDETECTION_H
#define QPROCESSORDETECTION_H

View File

@ -6,6 +6,11 @@
# include <QtCore/qglobal.h>
#endif
#if 0
#pragma qt_sync_skip_header_check
#pragma qt_sync_stop_processing
#endif
#ifndef QSYSTEMDETECTION_H
#define QSYSTEMDETECTION_H