[Lldb-commits] [lldb] r367073 - [CMake] Add TableGen dependency to lldbInterpreter.

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Jul 25 15:56:59 PDT 2019


Author: jdevlieghere
Date: Thu Jul 25 15:56:59 2019
New Revision: 367073

URL: http://llvm.org/viewvc/llvm-project?rev=367073&view=rev
Log:
[CMake] Add TableGen dependency to lldbInterpreter.

lldbInterpreter depends on LLDBPropertiesGen and LLDBPropertiesEnumGen.

Modified:
    lldb/trunk/source/Interpreter/CMakeLists.txt

Modified: lldb/trunk/source/Interpreter/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CMakeLists.txt?rev=367073&r1=367072&r2=367073&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CMakeLists.txt (original)
+++ lldb/trunk/source/Interpreter/CMakeLists.txt Thu Jul 25 15:56:59 2019
@@ -56,6 +56,8 @@ add_lldb_library(lldbInterpreter
     Support
   )
 
+add_dependencies(lldbInterpreter LLDBPropertiesGen LLDBPropertiesEnumGen)
+
 if (NOT LLDB_DISABLE_LIBEDIT)
   target_include_directories(lldbInterpreter PRIVATE ${libedit_INCLUDE_DIRS})
 endif()
\ No newline at end of file




More information about the lldb-commits mailing list