diff options
author | Eric Beckmann <ecbeckmann@google.com> | 2017-07-20 21:42:04 +0000 |
---|---|---|
committer | Eric Beckmann <ecbeckmann@google.com> | 2017-07-20 21:42:04 +0000 |
commit | 7d50c389c4d46ccd3b4f06d09f32202f9ae94bc9 (patch) | |
tree | 776f10fa768d2ca0d66da2aa46438d286e4cdf56 /llvm/lib/Support/CMakeLists.txt | |
parent | eaf833ca2bb35323cfcb333b0ec71f1adc35b530 (diff) | |
download | bcm5719-llvm-7d50c389c4d46ccd3b4f06d09f32202f9ae94bc9.tar.gz bcm5719-llvm-7d50c389c4d46ccd3b4f06d09f32202f9ae94bc9.zip |
Implement parsing and writing of a single xml manifest file.
Summary: Implement parsing and writing of a single xml manifest file.
Subscribers: mgorny, llvm-commits, hiraditya
Differential Revision: https://reviews.llvm.org/D35425
llvm-svn: 308679
Diffstat (limited to 'llvm/lib/Support/CMakeLists.txt')
-rw-r--r-- | llvm/lib/Support/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Support/CMakeLists.txt b/llvm/lib/Support/CMakeLists.txt index 0a8e3897cce..e258e4df799 100644 --- a/llvm/lib/Support/CMakeLists.txt +++ b/llvm/lib/Support/CMakeLists.txt @@ -27,6 +27,9 @@ elseif( CMAKE_HOST_UNIX ) if( UNIX AND NOT (BEOS OR HAIKU) ) set(system_libs ${system_libs} m) endif() + if( LLVM_LIBXML2_ENABLED ) + set(system_libs ${system_libs} ${LIBXML2_LIBS}) + endif() endif( MSVC OR MINGW ) add_llvm_library(LLVMSupport @@ -110,6 +113,7 @@ add_llvm_library(LLVMSupport Triple.cpp Twine.cpp Unicode.cpp + WindowsManifestMerger.cpp YAMLParser.cpp YAMLTraits.cpp raw_os_ostream.cpp |