blob: 5cf2cd6ebf3445642e6b33c4016c7900d84ca5b3 [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
Sebastian Redl85728132010-08-17 20:43:28 +00008 clangSerialization
John McCall19510852010-08-20 18:27:03 +00009 clangParse
Steve Naroff50398192009-08-28 15:28:48 +000010 clangSema
Daniel Dunbard3781812009-12-02 08:44:24 +000011 clangAnalysis
Steve Naroff50398192009-08-28 15:28:48 +000012 clangAST
13 clangLex
14 clangBasic
15 )
16
17set( LLVM_LINK_COMPONENTS
18 bitreader
19 mc
Daniel Dunbar467f0302009-12-02 21:47:55 +000020 core
Steve Naroff50398192009-08-28 15:28:48 +000021 )
22
23add_clang_executable(c-index-test
24 c-index-test.c
25 )
Douglas Gregor9a3dcf22009-10-05 22:29:42 +000026
27set_target_properties(c-index-test
28 PROPERTIES
29 LINKER_LANGUAGE CXX)
30