DaanDeMeyer created this revision.
DaanDeMeyer added a reviewer: LLDB.
DaanDeMeyer added a project: LLDB.
Herald added subscribers: JDevlieghere, mgorny.
DaanDeMeyer requested review of this revision.
Herald added a subscriber: lldb-commits.

  This makes it easier to install the extension since the necessary file
  is already made available when lldb is installed instead of having to
  go and retrieve it from the llvm repo.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D93601

Files:
  lldb/tools/lldb-vscode/CMakeLists.txt


Index: lldb/tools/lldb-vscode/CMakeLists.txt
===================================================================
--- lldb/tools/lldb-vscode/CMakeLists.txt
+++ lldb/tools/lldb-vscode/CMakeLists.txt
@@ -44,6 +44,8 @@
     Support
   )
 
+install(FILES package.json DESTINATION share/lldb-vscode)
+
 if(LLDB_BUILD_FRAMEWORK)
   # In the build-tree, we know the exact path to the framework directory.
   # The installed framework can be in different locations.


Index: lldb/tools/lldb-vscode/CMakeLists.txt
===================================================================
--- lldb/tools/lldb-vscode/CMakeLists.txt
+++ lldb/tools/lldb-vscode/CMakeLists.txt
@@ -44,6 +44,8 @@
     Support
   )
 
+install(FILES package.json DESTINATION share/lldb-vscode)
+
 if(LLDB_BUILD_FRAMEWORK)
   # In the build-tree, we know the exact path to the framework directory.
   # The installed framework can be in different locations.
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to