diff options
author | Chris Mahoney <chris.mahoney@kitware.com> | 2023-06-05 19:59:13 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-07-19 14:45:33 (GMT) |
commit | 95941fd99020bb2345869ed393abde1a44529837 (patch) | |
tree | 4e809b9c121ce0e5745c1030d6a7c62b1c09bf2e /Source/cmGlobalJOMMakefileGenerator.h | |
parent | af9489a4f2858db0bf666c29f99dd332426f5ca1 (diff) | |
download | CMake-95941fd99020bb2345869ed393abde1a44529837.zip CMake-95941fd99020bb2345869ed393abde1a44529837.tar.gz CMake-95941fd99020bb2345869ed393abde1a44529837.tar.bz2 |
add_custom_{target,command}: Add argument JOB_SERVER_AWARE
Issue: #16273
Diffstat (limited to 'Source/cmGlobalJOMMakefileGenerator.h')
-rw-r--r-- | Source/cmGlobalJOMMakefileGenerator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalJOMMakefileGenerator.h b/Source/cmGlobalJOMMakefileGenerator.h index 5e74875..cd3ed33 100644 --- a/Source/cmGlobalJOMMakefileGenerator.h +++ b/Source/cmGlobalJOMMakefileGenerator.h @@ -47,6 +47,8 @@ public: void EnableLanguage(std::vector<std::string> const& languages, cmMakefile*, bool optional) override; + bool IsGNUMakeJobServerAware() const override { return false; } + protected: std::vector<GeneratedMakeCommand> GenerateBuildCommand( const std::string& makeProgram, const std::string& projectName, |