mirror of https://github.com/llvm/torch-mlir
11 lines
152 B
CMake
11 lines
152 B
CMake
|
include_directories(
|
||
|
${TORCH_INCLUDE_DIRS}
|
||
|
)
|
||
|
add_library(aten_ops SHARED
|
||
|
aten_ops.cpp
|
||
|
)
|
||
|
|
||
|
target_link_libraries(aten_ops
|
||
|
${TORCH_LIBRARIES}
|
||
|
)
|