Home | History | Annotate | Download | only in Lex
      1 set(LLVM_LINK_COMPONENTS
      2   Support
      3   )
      4 
      5 add_clang_unittest(LexTests
      6   LexerTest.cpp
      7   PPCallbacksTest.cpp
      8   PPConditionalDirectiveRecordTest.cpp
      9   )
     10 
     11 target_link_libraries(LexTests
     12   clangAST
     13   clangBasic
     14   clangLex
     15   clangParse
     16   clangSema
     17   )
     18