diff options
author | Keno Fischer <kfischer@college.harvard.edu> | 2014-08-26 22:50:03 +0000 |
---|---|---|
committer | Keno Fischer <kfischer@college.harvard.edu> | 2014-08-26 22:50:03 +0000 |
commit | 7d4f2cebdf069778e2873c9f90357e336876bc10 (patch) | |
tree | 246a2a15326fd3cfa7ab79b10f90cb95df44da81 /clang/unittests | |
parent | f37b7c79a319595b5541929a4eff810c2df6bb83 (diff) | |
download | bcm5719-llvm-7d4f2cebdf069778e2873c9f90357e336876bc10.tar.gz bcm5719-llvm-7d4f2cebdf069778e2873c9f90357e336876bc10.zip |
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)
llvm-svn: 216499
Diffstat (limited to 'clang/unittests')
-rw-r--r-- | clang/unittests/CodeGen/CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/unittests/CodeGen/CMakeLists.txt b/clang/unittests/CodeGen/CMakeLists.txt index 19d3d11a6ab..a34e28b4e35 100644 --- a/clang/unittests/CodeGen/CMakeLists.txt +++ b/clang/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 |