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.

18 lines
285 B

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