Clang Project

clang_source_code/unittests/Serialization/CMakeLists.txt
1set(LLVM_LINK_COMPONENTS
2  BitReader
3  Support
4  )
5
6add_clang_unittest(SerializationTests
7  InMemoryModuleCacheTest.cpp
8  )
9
10target_link_libraries(SerializationTests
11  PRIVATE
12  clangAST
13  clangBasic
14  clangLex
15  clangSema
16  clangSerialization
17  )
18