diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2021-06-26 21:45:26 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-06-29 15:07:14 (GMT) |
commit | 7cb4ad7e3990c879088b7573d136509989ed3f5b (patch) | |
tree | a3cc9052669cd23ef851b42664f8e7e306616bef /Source/cmGlobalCommonGenerator.h | |
parent | 23af78bb78b924b52b180049eb2ce62a4339251e (diff) | |
download | CMake-7cb4ad7e3990c879088b7573d136509989ed3f5b.zip CMake-7cb4ad7e3990c879088b7573d136509989ed3f5b.tar.gz CMake-7cb4ad7e3990c879088b7573d136509989ed3f5b.tar.bz2 |
cmGlobalCommonGenerator: Adopt GetEditCacheCommand
Move the implementation from the Makefile generator so it can be
later used by the Ninja generator too.
Diffstat (limited to 'Source/cmGlobalCommonGenerator.h')
-rw-r--r-- | Source/cmGlobalCommonGenerator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalCommonGenerator.h b/Source/cmGlobalCommonGenerator.h index c641240..fed9ce8 100644 --- a/Source/cmGlobalCommonGenerator.h +++ b/Source/cmGlobalCommonGenerator.h @@ -46,4 +46,5 @@ public: protected: virtual bool SupportsDirectConsole() const { return true; } const char* GetEditCacheTargetName() const override { return "edit_cache"; } + std::string GetEditCacheCommand() const override; }; |