annotate clang/unittests/Basic/CMakeLists.txt @ 165:597b3f1c2c93
fix call createTailCallEliminationPass
author |
anatofuz |
date |
Tue, 24 Mar 2020 15:30:52 +0900 |
parents |
1d019706d866 |
children |
2e18cbf3894f |
rev |
line source |
150
|
1 set(LLVM_LINK_COMPONENTS
|
|
2 Support
|
|
3 )
|
|
4
|
|
5 add_clang_unittest(BasicTests
|
|
6 CharInfoTest.cpp
|
|
7 DiagnosticTest.cpp
|
|
8 FileManagerTest.cpp
|
|
9 FixedPointTest.cpp
|
|
10 SourceManagerTest.cpp
|
|
11 )
|
|
12
|
|
13 clang_target_link_libraries(BasicTests
|
|
14 PRIVATE
|
|
15 clangAST
|
|
16 clangBasic
|
|
17 clangLex
|
|
18 )
|