Skip to content

Commit 6bff2d5

Browse files
committed
[lldb] Move template python files to separate directory
This patch moves the template files for the various scripting affordances to a separate directory. This is a preparatory work for upcoming improvements and consolidations to other scripting affordances. Differential Revision: https://reviews.llvm.org/D159310 Signed-off-by: Med Ismail Bennani <[email protected]>
1 parent 77374d3 commit 6bff2d5

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

lldb/bindings/python/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,15 @@ function(finish_swig_python swig_target lldb_python_bindings_dir lldb_python_tar
103103
${lldb_python_target_dir}
104104
"plugins"
105105
FILES
106-
"${LLDB_SOURCE_DIR}/examples/python/scripted_process/scripted_process.py"
107-
"${LLDB_SOURCE_DIR}/examples/python/scripted_process/scripted_platform.py")
106+
"${LLDB_SOURCE_DIR}/examples/python/templates/scripted_process.py"
107+
"${LLDB_SOURCE_DIR}/examples/python/templates/scripted_platform.py")
108108

109109
if(APPLE)
110110
create_python_package(
111111
${swig_target}
112112
${lldb_python_target_dir} "macosx"
113113
FILES "${LLDB_SOURCE_DIR}/examples/python/crashlog.py"
114-
"${LLDB_SOURCE_DIR}/examples/python/scripted_process/crashlog_scripted_process.py"
114+
"${LLDB_SOURCE_DIR}/examples/python/crashlog_scripted_process.py"
115115
"${LLDB_SOURCE_DIR}/examples/darwin/heap_find/heap.py")
116116

117117
create_python_package(

0 commit comments

Comments
 (0)