
This reverts commit r113631 Conflicts: CMakeLists.txt lib/CodeGen/CMakeLists.txt llvm-svn: 113817
19 lines
234 B
CMake
19 lines
234 B
CMake
set(LLVM_NO_RTTI 1)
|
|
|
|
set(LLVM_USED_LIBS libclang)
|
|
|
|
set( LLVM_LINK_COMPONENTS
|
|
bitreader
|
|
mc
|
|
core
|
|
)
|
|
|
|
add_clang_executable(c-index-test
|
|
c-index-test.c
|
|
)
|
|
|
|
set_target_properties(c-index-test
|
|
PROPERTIES
|
|
LINKER_LANGUAGE CXX)
|
|
|