[Lldb-commits] [PATCH] Don't compile scripts directory if LLDB_DISABLE_PYTHON is set
Pavel Labath
labath at google.com
Tue Apr 7 07:58:23 PDT 2015
REPOSITORY
rL LLVM
http://reviews.llvm.org/D8855
Files:
lldb/trunk/CMakeLists.txt
Index: lldb/trunk/CMakeLists.txt
===================================================================
--- lldb/trunk/CMakeLists.txt
+++ lldb/trunk/CMakeLists.txt
@@ -4,7 +4,7 @@
#add_subdirectory(include)
add_subdirectory(docs)
-if (NOT CMAKE_SYSTEM_NAME MATCHES "Windows" OR NOT LLDB_DISABLE_PYTHON)
+if (NOT CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT LLDB_DISABLE_PYTHON)
add_subdirectory(scripts)
endif ()
add_subdirectory(source)
EMAIL PREFERENCES
http://reviews.llvm.org/settings/panel/emailpreferences/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D8855.23340.patch
Type: text/x-patch
Size: 443 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150407/703e3cbb/attachment.bin>
More information about the lldb-commits
mailing list