hhb created this revision.
hhb added a reviewer: mstorsjo.
Herald added subscribers: lldb-commits, mgorny.
Herald added a project: LLDB.
Not sure whether this is a feature or bug...
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D67942
Files:
lldb/CMakeLists.txt
Index: lldb/CMakeLists.txt
===================================================================
--- lldb/CMakeLists.txt
+++ lldb/CMakeLists.txt
@@ -230,6 +230,8 @@
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy ${PYTHON_DLL_NATIVE_PATH}
${LLDB_BIN_DIR} VERBATIM
COMMENT "Copying Python DLL to LLDB binaries directory.")
+ get_filename_component(PYTHON_DLL_NAME ${PYTHON_DLL} NAME)
+ install(FILES ${LLDB_BIN_DIR}/${PYTHON_DLL_NAME} DESTINATION bin)
endif ()
endif ()
Index: lldb/CMakeLists.txt
===================================================================
--- lldb/CMakeLists.txt
+++ lldb/CMakeLists.txt
@@ -230,6 +230,8 @@
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy ${PYTHON_DLL_NATIVE_PATH} ${LLDB_BIN_DIR} VERBATIM
COMMENT "Copying Python DLL to LLDB binaries directory.")
+ get_filename_component(PYTHON_DLL_NAME ${PYTHON_DLL} NAME)
+ install(FILES ${LLDB_BIN_DIR}/${PYTHON_DLL_NAME} DESTINATION bin)
endif ()
endif ()
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits