blob: 775d590dd601af6396de8bd05c596aad2bf1c80e [file] [log] [blame]
Steve Naroff50398192009-08-28 15:28:48 +00001set(LLVM_NO_RTTI 1)
2
3set( LLVM_USED_LIBS
4 CIndex
5 clangIndex
6 clangFrontend
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00007 clangDriver
Steve Naroff50398192009-08-28 15:28:48 +00008 clangSema
Daniel Dunbard3781812009-12-02 08:44:24 +00009 clangAnalysis
Steve Naroff50398192009-08-28 15:28:48 +000010 clangAST
Daniel Dunbar521bf9c2009-12-01 09:51:01 +000011 clangParse
Steve Naroff50398192009-08-28 15:28:48 +000012 clangLex
13 clangBasic
14 )
15
16set( LLVM_LINK_COMPONENTS
17 bitreader
18 mc
19 )
20
21add_clang_executable(c-index-test
22 c-index-test.c
23 )
Douglas Gregor9a3dcf22009-10-05 22:29:42 +000024
25set_target_properties(c-index-test
26 PROPERTIES
27 LINKER_LANGUAGE CXX)
28