blob: 4678461de1f4b8263060e1cfd9f0e68acebbe10d [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
8 clangAnalysis
Steve Naroff50398192009-08-28 15:28:48 +00009 clangSema
10 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