mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-30 21:56:43 +00:00
8cbf4a0b5d
llvm-svn: 221346
31 lines
598 B
CMake
31 lines
598 B
CMake
add_clang_executable(c-index-test
|
|
c-index-test.c
|
|
)
|
|
|
|
if(NOT MSVC)
|
|
set_property(
|
|
SOURCE c-index-test.c
|
|
PROPERTY COMPILE_FLAGS "-std=gnu89"
|
|
)
|
|
endif()
|
|
|
|
if (LLVM_BUILD_STATIC)
|
|
target_link_libraries(c-index-test
|
|
libclang_static
|
|
)
|
|
else()
|
|
target_link_libraries(c-index-test
|
|
libclang
|
|
)
|
|
endif()
|
|
|
|
set_target_properties(c-index-test
|
|
PROPERTIES
|
|
LINKER_LANGUAGE CXX)
|
|
|
|
# If libxml2 is available, make it available for c-index-test.
|
|
if (CLANG_HAVE_LIBXML)
|
|
include_directories(SYSTEM ${LIBXML2_INCLUDE_DIR})
|
|
target_link_libraries(c-index-test ${LIBXML2_LIBRARIES})
|
|
endif()
|