aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorAlexey Edelev <alexey.edelev@qt.io>2023-03-30 17:09:03 +0200
committerAlexey Edelev <alexey.edelev@qt.io>2023-04-03 15:38:57 +0200
commitf4528858f6f79c1c788c177985c5a9ccc0b8207b (patch)
tree0a220e83e26417e75b8cc3bf082909688c1ee9f6 /cmake
parent412110bdcaffd40a87c5a46d250acb85d8eb8044 (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 <alexandru.croitor@qt.io>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/QtDeclarativeSetup.cmake4
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()