You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
309 B

add_clang_executable(c-arcmt-test
c-arcmt-test.c
)
if (LLVM_BUILD_STATIC)
target_link_libraries(c-arcmt-test
PRIVATE
libclang_static
)
else()
target_link_libraries(c-arcmt-test
PRIVATE
libclang
)
endif()
set_target_properties(c-arcmt-test
PROPERTIES
LINKER_LANGUAGE CXX)