blob: 45ad9e35c6efb5fc482bdf6ec2f77ea02385bdf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
set(LLVM_USED_LIBS libclang)
set( LLVM_LINK_COMPONENTS
support
mc
)
add_clang_executable(c-index-test
c-index-test.c
)
set_target_properties(c-index-test
PROPERTIES
LINKER_LANGUAGE CXX)
|