From: Keno Fischer Date: Tue, 26 Aug 2014 22:50:03 +0000 (+0000) Subject: Attempt to address cmake buildbot failure X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f839645bc29254982cff4ffa7ecb7266ad9e337a;p=clang Attempt to address cmake buildbot failure CMake gets confused by the fact that both LLVM and Clang now have a CodeGen unittest. Rename the target to avoid that. The new test was also missing ProfileData (thanks to Julien Lerouge for pointing that out) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@216499 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/CodeGen/CMakeLists.txt b/unittests/CodeGen/CMakeLists.txt index 19d3d11a6a..a34e28b4e3 100644 --- a/unittests/CodeGen/CMakeLists.txt +++ b/unittests/CodeGen/CMakeLists.txt @@ -1,12 +1,13 @@ set(LLVM_LINK_COMPONENTS Support + ProfileData ) -add_clang_unittest(CodeGenTests +add_clang_unittest(ClangCodeGenTests BufferSourceTest.cpp ) -target_link_libraries(CodeGenTests +target_link_libraries(ClangCodeGenTests clangAST clangBasic clangFrontend