[Lldb-commits] [lldb] r234321 - Remove check for windows when compiling scripts directory

Pavel Labath labath at google.com
Tue Apr 7 08:30:23 PDT 2015


Author: labath
Date: Tue Apr  7 10:30:23 2015
New Revision: 234321

URL: http://llvm.org/viewvc/llvm-project?rev=234321&view=rev
Log:
Remove check for windows when compiling scripts directory

this is a followup to r234319, change requested in http://reviews.llvm.org/D8855.

Modified:
    lldb/trunk/CMakeLists.txt

Modified: lldb/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/CMakeLists.txt?rev=234321&r1=234320&r2=234321&view=diff
==============================================================================
--- lldb/trunk/CMakeLists.txt (original)
+++ lldb/trunk/CMakeLists.txt Tue Apr  7 10:30:23 2015
@@ -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)





More information about the lldb-commits mailing list