• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1add_clang_executable(c-index-test
2  c-index-test.c
3  )
4
5if(NOT MSVC)
6  set_property(
7    SOURCE c-index-test.c
8    PROPERTY COMPILE_FLAGS "-std=gnu89"
9    )
10endif()
11
12target_link_libraries(c-index-test
13  libclang
14  )
15
16set_target_properties(c-index-test
17  PROPERTIES
18  LINKER_LANGUAGE CXX)
19
20# If libxml2 is available, make it available for c-index-test.
21if (CLANG_HAVE_LIBXML)
22  include_directories(SYSTEM ${LIBXML2_INCLUDE_DIR})
23  target_link_libraries(c-index-test ${LIBXML2_LIBRARIES})
24endif()
25