From f81462977d99539c29d9310dc6b200bbbb36389b Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Fri, 24 Dec 2010 12:13:17 +0000 Subject: [PATCH] [CMAKE] Don't compile telnet and explorer on MSVC for now svn path=/branches/cmake-bringup/; revision=50122 --- base/applications/network/CMakeLists.txt | 2 ++ base/shell/CMakeLists.txt | 3 +++ 2 files changed, 5 insertions(+) diff --git a/base/applications/network/CMakeLists.txt b/base/applications/network/CMakeLists.txt index fb0c42d85c9..d961ff60aa5 100644 --- a/base/applications/network/CMakeLists.txt +++ b/base/applications/network/CMakeLists.txt @@ -9,6 +9,8 @@ add_subdirectory(netstat) add_subdirectory(nslookup) add_subdirectory(ping) add_subdirectory(route) +if(NOT MSVC) add_subdirectory(telnet) +endif() add_subdirectory(tracert) add_subdirectory(whois) diff --git a/base/shell/CMakeLists.txt b/base/shell/CMakeLists.txt index dc06a56fcda..4849ec112a6 100644 --- a/base/shell/CMakeLists.txt +++ b/base/shell/CMakeLists.txt @@ -1,4 +1,7 @@ add_subdirectory(cmd) +if(NOT MSVC) add_subdirectory(explorer) +endif() add_subdirectory(explorer-new) +