blob: 0cda6c4a31b8ac426cd0ee0c5e86bcb2023c81b2 [file] [log] [blame]
Steve Naroff50398192009-08-28 15:28:48 +00001set(LLVM_NO_RTTI 1)
2
Douglas Gregorec9bf472010-09-09 15:44:58 +00003set(LLVM_USED_LIBS libclang)
Steve Naroff50398192009-08-28 15:28:48 +00004
5set( LLVM_LINK_COMPONENTS
6 bitreader
7 mc
Daniel Dunbar467f0302009-12-02 21:47:55 +00008 core
Steve Naroff50398192009-08-28 15:28:48 +00009 )
10
11add_clang_executable(c-index-test
12 c-index-test.c
13 )
Douglas Gregor9a3dcf22009-10-05 22:29:42 +000014
15set_target_properties(c-index-test
16 PROPERTIES
17 LINKER_LANGUAGE CXX)
18