diff options
-rw-r--r-- | llvm/CMakeLists.txt | 1 | ||||
-rw-r--r-- | llvm/lib/CMakeLists.txt | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt index 83f44b8a878..8d808664c1e 100644 --- a/llvm/CMakeLists.txt +++ b/llvm/CMakeLists.txt @@ -743,6 +743,7 @@ if( MINGW ) endif() # Put this before tblgen. Else we have a circular dependence. +add_subdirectory(lib/Demangle) add_subdirectory(lib/Support) add_subdirectory(lib/TableGen) diff --git a/llvm/lib/CMakeLists.txt b/llvm/lib/CMakeLists.txt index 6b8846314ec..54aa0a9e328 100644 --- a/llvm/lib/CMakeLists.txt +++ b/llvm/lib/CMakeLists.txt @@ -1,6 +1,6 @@ -# `Support' and `TableGen' libraries are added on the top-level CMakeLists.txt +# `Demangle', `Support' and `TableGen' libraries are added on the top-level +# CMakeLists.txt -add_subdirectory(Demangle) add_subdirectory(IR) add_subdirectory(IRReader) add_subdirectory(CodeGen) |