Mark RegExpJitTables.h as non-module header

RegExpJitTables.h should not be processed by syncqt and should not
be installed. So disable any postprocessing of the header by setting
the _qt_non_module_header.

Change-Id: Ib91399bacea5f792559a2ae2274bcdcb8ae9ae8b
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
(cherry picked from commit f4528858f6)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Alexey Edelev 2023-03-30 17:09:03 +02:00 committed by Qt Cherry-pick Bot
parent 0694ecb1dc
commit 99c45125b2
1 changed files with 3 additions and 1 deletions

View File

@ -74,5 +74,7 @@ function(qt_declarative_generate_reg_exp_jit_tables consuming_target)
)
target_sources(${consuming_target} PRIVATE ${output_file})
target_include_directories(${consuming_target} PRIVATE $<BUILD_INTERFACE:${generate_dir}>)
set_source_files_properties(${output_file} PROPERTIES GENERATED TRUE)
set_source_files_properties(${output_file} PROPERTIES
GENERATED TRUE
_qt_non_module_header TRUE)
endfunction()