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.

Pick-to: 6.5
Change-Id: Ib91399bacea5f792559a2ae2274bcdcb8ae9ae8b
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
Alexey Edelev 2023-03-30 17:09:03 +02:00
parent 412110bdca
commit f4528858f6
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()