forked from OSchip/llvm-project
22 lines
473 B
CMake
22 lines
473 B
CMake
macro(add_se_library name)
|
|
add_llvm_library(${name} ${ARGN})
|
|
set_target_properties(${name} PROPERTIES FOLDER "streamexecutor libraries")
|
|
endmacro(add_se_library)
|
|
|
|
add_se_library(
|
|
streamexecutor
|
|
Device.cpp
|
|
DeviceMemory.cpp
|
|
Error.cpp
|
|
HostMemory.cpp
|
|
Kernel.cpp
|
|
KernelSpec.cpp
|
|
PackedKernelArgumentArray.cpp
|
|
Platform.cpp
|
|
PlatformDevice.cpp
|
|
PlatformManager.cpp
|
|
Stream.cpp
|
|
)
|
|
|
|
install(TARGETS streamexecutor DESTINATION lib)
|