blob: 95a1f10a4a017853916363544686150bd3c2c6ac [file] [log] [blame]
John Thompson99794542013-10-31 12:23:32 +00001set(LLVM_LINK_COMPONENTS
NAKAMURA Takumiff9225f2013-12-09 19:27:57 +00002 Support
John Thompson99794542013-10-31 12:23:32 +00003 )
4
5add_clang_executable(pp-trace
6 PPTrace.cpp
7 PPCallbacksTracker.cpp
8 )
9
10target_link_libraries(pp-trace
NAKAMURA Takumi78f534d2013-12-10 01:41:10 +000011 clangAST
12 clangBasic
13 clangFrontend
John Thompson99794542013-10-31 12:23:32 +000014 clangLex
John Thompson99794542013-10-31 12:23:32 +000015 clangTooling
16 )