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
342 B
20 lines
342 B
set(LLVM_LINK_COMPONENTS Object Support)
|
|
|
|
add_clang_tool(clang-offload-bundler
|
|
ClangOffloadBundler.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|
|
|
|
set(CLANG_OFFLOAD_BUNDLER_LIB_DEPS
|
|
clangBasic
|
|
)
|
|
|
|
add_dependencies(clang clang-offload-bundler)
|
|
|
|
clang_target_link_libraries(clang-offload-bundler
|
|
PRIVATE
|
|
${CLANG_OFFLOAD_BUNDLER_LIB_DEPS}
|
|
)
|