diff options
author | Brad King <brad.king@kitware.com> | 2015-08-24 10:58:42 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-08-27 13:35:13 -0400 |
commit | 92b835ec9d17b190b13da93702f0eb416b665a48 (patch) | |
tree | dfa13d914d79b889f5aef2f645b5a539b7d48c91 /CMakeLists.txt | |
parent | 2370a99400c6450606e25562386cf40bc9c41f38 (diff) | |
download | cmake-92b835ec9d17b190b13da93702f0eb416b665a48.tar.gz |
Simplify condition for using rpcrt4 library on Windows
Drop the CMAKE_BUILD_ON_VISUAL_STUDIO variable and hard-code the
condition at its only use.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 36244dd450..5e13a7e0f4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -144,17 +144,6 @@ macro(CMAKE_HANDLE_SYSTEM_LIBRARIES) endmacro() - - - -if(NOT CMake_TEST_EXTERNAL_CMAKE) - set(CMAKE_BUILD_ON_VISUAL_STUDIO 0) - if(WIN32 AND NOT UNIX AND NOT MINGW) - set(CMAKE_BUILD_ON_VISUAL_STUDIO 1) - endif() -endif() - - #----------------------------------------------------------------------- # a macro to determine the generator and ctest executable to use # for testing. Simply to improve readability of the main script. |