diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-10-28 15:42:24 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-10-28 17:54:43 (GMT) |
commit | 887a8874c343e88ccfca4098584cea91ab8138e6 (patch) | |
tree | 1deb703c267fa45069c16d30cafbb706a5970408 /Source/cmGlobalNinjaGenerator.h | |
parent | 5e1c5425651b215dbee89e46e146e87d10df268f (diff) | |
download | CMake-887a8874c343e88ccfca4098584cea91ab8138e6.zip CMake-887a8874c343e88ccfca4098584cea91ab8138e6.tar.gz CMake-887a8874c343e88ccfca4098584cea91ab8138e6.tar.bz2 |
EXPORT_COMPILE_COMMANDS: add `output` field
Also write for all configurations from multi-config generators.
This field was added in the Clang 5 documentation and not present in the
Clang 4 documentation (sometime between Dec 2016 and Mar 2017 according
to `web.archive.org`).
Diffstat (limited to 'Source/cmGlobalNinjaGenerator.h')
-rw-r--r-- | Source/cmGlobalNinjaGenerator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalNinjaGenerator.h b/Source/cmGlobalNinjaGenerator.h index defa264..dac1c52 100644 --- a/Source/cmGlobalNinjaGenerator.h +++ b/Source/cmGlobalNinjaGenerator.h @@ -292,7 +292,8 @@ public: } void AddCXXCompileCommand(const std::string& commandLine, - const std::string& sourceFile); + const std::string& sourceFile, + const std::string& objPath); /** * Add a rule to the generated build system. |