Home | History | Annotate | Download | only in c-arcmt-test
      1 add_clang_executable(c-arcmt-test
      2   c-arcmt-test.c
      3   )
      4 
      5 if (LLVM_BUILD_STATIC)
      6   target_link_libraries(c-arcmt-test
      7     libclang_static
      8     )
      9 else()
     10   target_link_libraries(c-arcmt-test
     11     libclang
     12     )
     13 endif()
     14 
     15 set_target_properties(c-arcmt-test
     16   PROPERTIES
     17   LINKER_LANGUAGE CXX)
     18