diff options
author | Brad King <brad.king@kitware.com> | 2015-04-01 17:19:32 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-04-01 17:19:32 (GMT) |
commit | aa508a52992990fd375253bed3a1e6c392722a56 (patch) | |
tree | fc14b9aa5d7a3131c3c887ce2b908a3a9063c94e /Source/cmGlobalUnixMakefileGenerator3.h | |
parent | 6f578ee3ade86f4bad786bf87c03afb0d8262249 (diff) | |
parent | 44990732a8c2340193667c200987503bbbcb442f (diff) | |
download | CMake-aa508a52992990fd375253bed3a1e6c392722a56.zip CMake-aa508a52992990fd375253bed3a1e6c392722a56.tar.gz CMake-aa508a52992990fd375253bed3a1e6c392722a56.tar.bz2 |
Merge topic 'makefile-DELETE_ON_ERROR'
44990732 Help: Add notes for topic 'makefile-DELETE_ON_ERROR'
4adf1dad Makefile: Tell GNU make to delete rule outputs on error (#15474)
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.h b/Source/cmGlobalUnixMakefileGenerator3.h index 50a901e..a76a835 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.h +++ b/Source/cmGlobalUnixMakefileGenerator3.h @@ -128,6 +128,9 @@ public: /** Does the make tool tolerate .NOTPARALLEL? */ virtual bool AllowNotParallel() const { return true; } + /** Does the make tool tolerate .DELETE_ON_ERROR? */ + virtual bool AllowDeleteOnError() const { return true; } + virtual void ComputeTargetObjectDirectory(cmGeneratorTarget* gt) const; protected: void WriteMainMakefile2(); |