2010-09-14 07:54:41 +08:00
|
|
|
set( LLVM_LINK_COMPONENTS
|
2011-02-20 07:03:58 +08:00
|
|
|
support
|
2010-09-14 07:54:41 +08:00
|
|
|
mc
|
2009-08-28 23:28:48 +08:00
|
|
|
)
|
2009-10-06 06:29:42 +08:00
|
|
|
|
2010-09-14 07:54:41 +08:00
|
|
|
add_clang_executable(c-index-test
|
|
|
|
c-index-test.c
|
2010-09-11 05:13:16 +08:00
|
|
|
)
|
|
|
|
|
2012-06-21 09:30:21 +08:00
|
|
|
target_link_libraries(c-index-test
|
|
|
|
libclang
|
|
|
|
)
|
|
|
|
|
2009-10-06 06:29:42 +08:00
|
|
|
set_target_properties(c-index-test
|
|
|
|
PROPERTIES
|
|
|
|
LINKER_LANGUAGE CXX)
|
|
|
|
|
2011-09-28 18:50:23 +08:00
|
|
|
install(TARGETS c-index-test RUNTIME DESTINATION bin)
|