diff options
author | Brad King <brad.king@kitware.com> | 2014-10-21 19:08:03 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-10-21 19:08:03 (GMT) |
commit | 210230e216764144b9a0112799d4c9046c3a8dd9 (patch) | |
tree | ed6c88b0e4edf5eac1e0e000cd38b9d677ed33a2 /Source/cmake.cxx | |
parent | ae5686f8d0e4f153991d5a7c0cf7406fa7d3468c (diff) | |
parent | 2db55ffa56a69c4b55410afb9b40ab20f4025837 (diff) | |
download | CMake-210230e216764144b9a0112799d4c9046c3a8dd9.zip CMake-210230e216764144b9a0112799d4c9046c3a8dd9.tar.gz CMake-210230e216764144b9a0112799d4c9046c3a8dd9.tar.bz2 |
Merge topic 'remove-borland-build'
2db55ffa Remove borland workarounds.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 62f33dc..dc1b113 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1377,9 +1377,7 @@ int cmake::ActualConfigure() } else { -#if defined(__BORLANDC__) && defined(_WIN32) - this->SetGlobalGenerator(new cmGlobalBorlandMakefileGenerator); -#elif defined(_WIN32) && !defined(__CYGWIN__) && !defined(CMAKE_BOOT_MINGW) +#if defined(_WIN32) && !defined(__CYGWIN__) && !defined(CMAKE_BOOT_MINGW) std::string installedCompiler; // Try to find the newest VS installed on the computer and // use that as a default if -G is not specified |