summaryrefslogtreecommitdiffstats
path: root/Source/cmJsonObjects.cxx
Commit message (Collapse)AuthorAgeFilesLines
* IWYU: Update CMake code for IWYU built with Clang 6Brad King2019-01-151-0/+1
| | | | | IWYU now correctly requires `<utility>` for `std::move`. It also requires a container header when used via a range-based for loop.
* Server mode: Fix regression of hasInstallRuleKyle Edwards2018-12-121-2/+8
| | | | | | | | The introduction of policy CMP0082, to run subdirectory install rules in the correct order, caused a regression in server mode where any directory with a subdirectory is marked as having an install rule even if no "real" install rules are present. This change fixes this regression for server mode.
* clang-tidy: Fix readability-static-accessed-through-instanceRegina Pfeifer2018-11-211-2/+1
| | | | Enable the check in .clang-tidy and fix all warnings.
* cmake-server: Revert "Support codemodel filegroups for INTERFACE_SOURCES"Brad King2018-10-171-175/+39
| | | | | | | | | | | | | Revert commit v3.13.0-rc1~144^2 (cmake-server: Support codemodel filegroups for INTERFACE_SOURCES, 2018-08-10). The changes activate code paths not meant to be used with interface libraries. Another approach will be needed to expose this information later. This revert has to be done by hand because the code in question has been changed somewhat since the changes were made, and was also factored out to another source file. Fixes: #18463
* server: Compile json object generation source separatelyBrad King2018-09-211-12/+16
| | | | | Declare entry points in a dedicated header and compile the source separately instead of including it in the server implementation.
* server: Split json object generation into separate sourceBrad King2018-09-211-0/+819
For now just move the content and `#include` it back in to the original translation unit. That way `git blame` can cleanly track the original lines.