Files
clang-p2996/libc/utils/gpu/loader/amdgpu/CMakeLists.txt
Joseph Huber feeb8335a0 [libc] Change the GPU loaders to LLVM executables (#101442)
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.
2024-08-01 07:13:41 -05:00

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
)