diff options
author | Alexey Edelev <[email protected]> | 2023-03-30 17:09:03 +0200 |
---|---|---|
committer | Alexey Edelev <[email protected]> | 2023-04-03 15:38:57 +0200 |
commit | f4528858f6f79c1c788c177985c5a9ccc0b8207b (patch) | |
tree | 0a220e83e26417e75b8cc3bf082909688c1ee9f6 | |
parent | 412110bdcaffd40a87c5a46d250acb85d8eb8044 (diff) |
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 <[email protected]>
-rw-r--r-- | cmake/QtDeclarativeSetup.cmake | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmake/QtDeclarativeSetup.cmake b/cmake/QtDeclarativeSetup.cmake index 6f39befa26..165a71e09a 100644 --- a/cmake/QtDeclarativeSetup.cmake +++ b/cmake/QtDeclarativeSetup.cmake @@ -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() |