From c072cdfb8876df773da11222a35b7062dee2ad29 Mon Sep 17 00:00:00 2001 From: Marco Bubke Date: Mon, 30 Jan 2017 11:24:46 +0100 Subject: Clang: Add ClangPchManager Compiling every header file again and again is quite time comsuming. There are technics to improve this like preambles(a kind of automated precompiled header) but they don't share their data between translation units. This approach provides an automatically generated precompiled header for every project and subproject to improve the loading time. Change-Id: I34f5bd4db21951175920e2a9bbf6b97b1d705969 Reviewed-by: Eike Ziller Reviewed-by: Tim Jenssen --- src/plugins/plugins.pro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/plugins/plugins.pro') diff --git a/src/plugins/plugins.pro b/src/plugins/plugins.pro index 8090973537c..2826ea3e2ed 100644 --- a/src/plugins/plugins.pro +++ b/src/plugins/plugins.pro @@ -81,8 +81,9 @@ exists($$LLVM_INSTALL_DIR) { win32-msvc2015:lessThan(QT_CL_PATCH_VERSION, 24210): QTC_NO_CLANG_LIBTOOLING = 1 isEmpty(QTC_NO_CLANG_LIBTOOLING) { SUBDIRS += clangrefactoring + SUBDIRS += clangpchmanager } else { - warning("Building the Clang refactoring plugin is disabled.") + warning("Building the Clang refactoring and the pch manager plugins are disabled.") } } else { warning("Set LLVM_INSTALL_DIR to build the Clang Code Model. " \ -- cgit v1.2.3