Files
clang-p2996/lldb/source/Plugins/ScriptInterpreter/CMakeLists.txt
Pavel Labath bcadb5a3d1 ScriptInterpreterPython cleanup
Instead of #ifdef-ing the contents of all files in the plugin for all
non-python builds, just disable the plugin at the cmake level. Also,
remove spurious extra linking of the Python plugin in liblldb. This
plugin is already included as a part of LLDB_ALL_PLUGINS variable.

llvm-svn: 335236
2018-06-21 14:09:15 +00:00

5 lines
87 B
CMake

add_subdirectory(None)
if (NOT LLDB_DISABLE_PYTHON)
add_subdirectory(Python)
endif()