diff options
author | Brad King <brad.king@kitware.com> | 2015-05-04 15:02:18 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-05-04 15:02:18 (GMT) |
commit | 8403c8da2c54affb0ab185aaaf302c7fa7ade914 (patch) | |
tree | 271f558c80dd4b28e03c5d2621e6b940e3e78cb1 /Source/cmLocalUnixMakefileGenerator3.h | |
parent | e0222dda1490dcfdf85a18ea5a22ec2313ea4d53 (diff) | |
parent | bb6663ca0a73872b063477e92272418b7d49e39b (diff) | |
download | CMake-8403c8da2c54affb0ab185aaaf302c7fa7ade914.zip CMake-8403c8da2c54affb0ab185aaaf302c7fa7ade914.tar.gz CMake-8403c8da2c54affb0ab185aaaf302c7fa7ade914.tar.bz2 |
Merge topic 'mingw32-make-backslash-workaround'
bb6663ca Makefile: Workaround mingw32-make trailing backslash trouble (#15546)
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index 9f83b86..aee22ec 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -95,6 +95,7 @@ public: * Set to true if the make tool being used is MinGW Make. */ void SetMinGWMake(bool v) {this->MinGWMake = v;} + bool IsMinGWMake() const { return this->MinGWMake; } /** * Set to true if the make tool being used is NMake. |