From 76d5df132ab61341ab1f23a18844eddfbfffc525 Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Tue, 7 Apr 2015 15:30:23 +0000 Subject: [PATCH] Remove check for windows when compiling scripts directory this is a followup to r234319, change requested in http://reviews.llvm.org/D8855. llvm-svn: 234321 --- lldb/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/CMakeLists.txt b/lldb/CMakeLists.txt index 5cac09a..91162e0 100644 --- a/lldb/CMakeLists.txt +++ b/lldb/CMakeLists.txt @@ -4,7 +4,7 @@ include(cmake/modules/AddLLDB.cmake) #add_subdirectory(include) add_subdirectory(docs) -if (NOT CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT LLDB_DISABLE_PYTHON) +if (NOT LLDB_DISABLE_PYTHON) add_subdirectory(scripts) endif () add_subdirectory(source) -- 2.7.4