diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-10-03 19:49:52 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-10-03 19:49:52 (GMT) |
commit | 8f652aad2176055ff7f76e76fcb14389bafcc543 (patch) | |
tree | 27cf83147f35dafce3563197a5dc41836c5ca252 /Source/cmake.cxx | |
parent | e2eaa3efba61a39fcf5e69d0773d9c4aad653d84 (diff) | |
download | CMake-8f652aad2176055ff7f76e76fcb14389bafcc543.zip CMake-8f652aad2176055ff7f76e76fcb14389bafcc543.tar.gz CMake-8f652aad2176055ff7f76e76fcb14389bafcc543.tar.bz2 |
ENH: fixes for borland compiler testing
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 18235ee..ff99837 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -324,7 +324,9 @@ int cmake::Generate(const std::vector<std::string>& args, bool buildMakefiles) } else { -#if defined(_WIN32) && !defined(__CYGWIN__) +#if defined(__BORLANDC__) + gen = new cmBorlandMakefileGenerator; +#elif defined(_WIN32) && !defined(__CYGWIN__) gen = new cmMSProjectGenerator; #else gen = new cmUnixMakefileGenerator; |