From: Dmitri Gribenko Date: Mon, 23 Jul 2012 20:11:34 +0000 (+0000) Subject: add AST unittests to CMake build system X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f919985b6e3be23ec840f2c9d35bdf49890fe545;p=clang add AST unittests to CMake build system git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160640 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/AST/CMakeLists.txt b/unittests/AST/CMakeLists.txt index 738e760419..63418a2937 100644 --- a/unittests/AST/CMakeLists.txt +++ b/unittests/AST/CMakeLists.txt @@ -1,5 +1,6 @@ add_clang_unittest(ASTTests CommentLexer.cpp + CommentParser.cpp ) target_link_libraries(ASTTests diff --git a/unittests/CMakeLists.txt b/unittests/CMakeLists.txt index aed97c3627..989025a9eb 100644 --- a/unittests/CMakeLists.txt +++ b/unittests/CMakeLists.txt @@ -10,6 +10,7 @@ function(add_clang_unittest test_dirname) endfunction() add_subdirectory(ASTMatchers) +add_subdirectory(AST) add_subdirectory(Basic) add_subdirectory(Lex) add_subdirectory(Frontend)