diff options
author | Brad King <brad.king@kitware.com> | 2021-02-03 00:15:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-02-03 16:35:31 (GMT) |
commit | d8f3e68ca948ae25e923dd944b07ea4670645232 (patch) | |
tree | 2fdd6627626dd8b0fd73df15fb077d4b7566ddf4 /Source/cmGlobalGenerator.h | |
parent | cdcfe3eb99f2471740dccdbbef5c47414c15e661 (diff) | |
download | CMake-d8f3e68ca948ae25e923dd944b07ea4670645232.zip CMake-d8f3e68ca948ae25e923dd944b07ea4670645232.tar.gz CMake-d8f3e68ca948ae25e923dd944b07ea4670645232.tar.bz2 |
Ninja Multi-Config: Enable relink diagnostic message
We already have a message for the "Ninja" generator, but it applies
to the "Ninja Multi-Config" generator too.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 86fb228..590de26 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -438,6 +438,8 @@ public: virtual bool IsVisualStudio() const { return false; } + virtual bool IsNinja() const { return false; } + /** Return true if we know the exact location of object files. If false, store the reason in the given string. This is meaningful only after EnableLanguage has been called. */ |