Summary: I am going to rework these tools to just me LLVM tools. This patch is pretty much NFC to set up the CMake for that.
16 lines
241 B
CMake
16 lines
241 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
BinaryFormat
|
|
Object
|
|
Option
|
|
Support
|
|
)
|
|
|
|
add_llvm_executable(amdhsa-loader amdhsa-loader.cpp)
|
|
|
|
target_link_libraries(amdhsa-loader
|
|
PRIVATE
|
|
hsa-runtime64::hsa-runtime64
|
|
gpu_loader
|
|
llvmlibc_rpc_server
|
|
)
|