1add_custom_target(ClangUnitTests)
2set_target_properties(ClangUnitTests PROPERTIES FOLDER "Clang tests")
3
4# add_clang_unittest(test_dirname file1.cpp file2.cpp)
5#
6# Will compile the list of files together and link against the clang
7# Produces a binary named 'basename(test_dirname)'.
8function(add_clang_unittest test_dirname)
9  add_unittest(ClangUnitTests ${test_dirname} ${ARGN})
10endfunction()
11
12add_subdirectory(Basic)
13add_subdirectory(Lex)
14add_subdirectory(Driver)
15if(CLANG_ENABLE_STATIC_ANALYZER)
16  add_subdirectory(Frontend)
17endif()
18if(CLANG_ENABLE_REWRITER)
19  add_subdirectory(ASTMatchers)
20  add_subdirectory(AST)
21  add_subdirectory(Tooling)
22  add_subdirectory(Format)
23  add_subdirectory(Sema)
24endif()
25if(NOT WIN32) # FIXME:Investigating.
26  add_subdirectory(libclang)
27endif()
28