blob: d965fd2b51e2bbe4edabc72d81befd1c9ad61425 [file] [log] [blame]
Steve Naroff50398192009-08-28 15:28:48 +00001set(LLVM_NO_RTTI 1)
2
3set( LLVM_USED_LIBS
Daniel Dunbarf51f20f2010-04-30 21:51:10 +00004 libclang
Steve Naroff50398192009-08-28 15:28:48 +00005 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
Daniel Dunbar467f0302009-12-02 21:47:55 +000019 core
Steve Naroff50398192009-08-28 15:28:48 +000020 )
21
22add_clang_executable(c-index-test
23 c-index-test.c
24 )
Douglas Gregor9a3dcf22009-10-05 22:29:42 +000025
26set_target_properties(c-index-test
27 PROPERTIES
28 LINKER_LANGUAGE CXX)
29