forked from OSchip/llvm-project
Always check for libxml2 in CMake
This is clang's business and LLVM will soon be updated not to perform the check for us. llvm-svn: 210308
This commit is contained in:
parent
b27bdade9f
commit
6cea318027
|
@ -156,11 +156,11 @@ if( CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR )
|
|||
endif()
|
||||
|
||||
set( CLANG_BUILT_STANDALONE 1 )
|
||||
endif()
|
||||
|
||||
find_package(LibXml2)
|
||||
if (LIBXML2_FOUND)
|
||||
set(CLANG_HAVE_LIBXML 1)
|
||||
endif ()
|
||||
find_package(LibXml2)
|
||||
if (LIBXML2_FOUND)
|
||||
set(CLANG_HAVE_LIBXML 1)
|
||||
endif()
|
||||
|
||||
set(CLANG_RESOURCE_DIR "" CACHE STRING
|
||||
|
|
Loading…
Reference in New Issue