diff options
author | Brad King <brad.king@kitware.com> | 2024-05-14 16:52:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-05-14 16:52:08 (GMT) |
commit | 6010e007c73a00cfee17832efc475567fec8fe5b (patch) | |
tree | 874e13eaa78f9d9239cc92f6fd7fc1e679a01ba9 /Source/cmState.cxx | |
parent | 648a7fb9b9b7f17fd729f61e166ab831add59357 (diff) | |
download | CMake-6010e007c73a00cfee17832efc475567fec8fe5b.zip CMake-6010e007c73a00cfee17832efc475567fec8fe5b.tar.gz CMake-6010e007c73a00cfee17832efc475567fec8fe5b.tar.bz2 |
cmState: Add method to check for the Borland Makefiles generator
Diffstat (limited to 'Source/cmState.cxx')
-rw-r--r-- | Source/cmState.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmState.cxx b/Source/cmState.cxx index 72eeb9d..e05eb10 100644 --- a/Source/cmState.cxx +++ b/Source/cmState.cxx @@ -716,6 +716,16 @@ bool cmState::UseGhsMultiIDE() const return this->GhsMultiIDE; } +void cmState::SetBorlandMake(bool borlandMake) +{ + this->BorlandMake = borlandMake; +} + +bool cmState::UseBorlandMake() const +{ + return this->BorlandMake; +} + void cmState::SetWatcomWMake(bool watcomWMake) { this->WatcomWMake = watcomWMake; |