This reapplies 5ffd9bdb50 (#133545) with fixes.
The BUILD_SHARED_LIBS=ON build was fixed by adding missing LLVM
dependencies to the InterpTests binary in
unittests/AST/ByteCode/CMakeLists.txt .
80 lines
2.4 KiB
CMake
80 lines
2.4 KiB
CMake
add_custom_target(ClangUnitTests)
|
|
set_target_properties(ClangUnitTests PROPERTIES FOLDER "Clang/Tests")
|
|
|
|
if(CLANG_BUILT_STANDALONE)
|
|
# LLVMTesting* libraries are needed for some of the unittests.
|
|
if (EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Testing/Annotations
|
|
AND NOT TARGET LLVMTestingAnnotations)
|
|
add_subdirectory(${LLVM_MAIN_SRC_DIR}/lib/Testing/Annotations
|
|
lib/Testing/Annotations)
|
|
endif()
|
|
if (EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Testing/Support
|
|
AND NOT TARGET LLVMTestingSupport)
|
|
add_subdirectory(${LLVM_MAIN_SRC_DIR}/lib/Testing/Support
|
|
lib/Testing/Support)
|
|
endif()
|
|
endif()
|
|
|
|
# add_clang_unittest(test_name file1.cpp file2.cpp)
|
|
#
|
|
# Will compile the list of files together and link against the clang
|
|
# Produces a binary named 'basename(test_name)'.
|
|
function(add_clang_unittest test_name)
|
|
cmake_parse_arguments(ARG
|
|
""
|
|
""
|
|
"CLANG_LIBS;LINK_LIBS;LLVM_COMPONENTS"
|
|
${ARGN})
|
|
|
|
if (NOT ${test_name} MATCHES "Tests$")
|
|
message(FATAL_ERROR "Unit test name must end with 'Tests' for lit to find it.")
|
|
endif()
|
|
|
|
# LLVM_COMPONENTS is for LLVM_LINK_COMPONENTS deps, and must be before
|
|
# add_unittest.
|
|
list(APPEND LLVM_LINK_COMPONENTS ${ARG_LLVM_COMPONENTS})
|
|
|
|
add_unittest(ClangUnitTests ${test_name} ${ARG_UNPARSED_ARGUMENTS})
|
|
|
|
# Clang libs either come from the entire dylib, or individual libraries.
|
|
if (CLANG_LINK_CLANG_DYLIB)
|
|
list(APPEND ARG_LINK_LIBS clang-cpp)
|
|
else()
|
|
list(APPEND ARG_LINK_LIBS ${ARG_CLANG_LIBS})
|
|
endif()
|
|
|
|
# LINK_LIBS is for normal library dependencies.
|
|
target_link_libraries(${test_name} PRIVATE ${ARG_LINK_LIBS})
|
|
endfunction()
|
|
|
|
add_subdirectory(Basic)
|
|
add_subdirectory(Lex)
|
|
add_subdirectory(Parse)
|
|
add_subdirectory(Driver)
|
|
if(CLANG_ENABLE_STATIC_ANALYZER)
|
|
add_subdirectory(Analysis)
|
|
add_subdirectory(StaticAnalyzer)
|
|
endif()
|
|
add_subdirectory(ASTMatchers)
|
|
add_subdirectory(AST)
|
|
add_subdirectory(CrossTU)
|
|
add_subdirectory(Tooling)
|
|
add_subdirectory(Format)
|
|
add_subdirectory(Frontend)
|
|
add_subdirectory(Rewrite)
|
|
add_subdirectory(Sema)
|
|
add_subdirectory(CodeGen)
|
|
if(HAVE_CLANG_REPL_SUPPORT)
|
|
add_subdirectory(Interpreter)
|
|
endif()
|
|
# FIXME: libclang unit tests are disabled on Windows due
|
|
# to failures, mostly in libclang.VirtualFileOverlay_*.
|
|
if(NOT WIN32 AND CLANG_TOOL_LIBCLANG_BUILD)
|
|
add_subdirectory(libclang)
|
|
endif()
|
|
add_subdirectory(DirectoryWatcher)
|
|
add_subdirectory(Index)
|
|
add_subdirectory(InstallAPI)
|
|
add_subdirectory(Serialization)
|
|
add_subdirectory(Support)
|