torch-mlir/lib/Backend/RefJIT/CMakeLists.txt

27 lines
612 B
CMake
Raw Normal View History

################################################################################
# NPCOMPBackendRefJITPythonModule
################################################################################
include(NpcompPython)
set(PYBIND_SOURCES
PythonModule.cpp
)
add_library(NPCOMPBackendRefJITPythonModule
${PYBIND_SOURCES}
)
target_link_libraries(NPCOMPBackendRefJITPythonModule
MLIRExecutionEngine
MLIRTargetLLVMIR
NPCOMPPythonCommon
NPCOMPJITRuntime
)
npcomp_python_target_compile_options(NPCOMPBackendRefJITPythonModule)
add_dependencies(NPCOMPBackendRefJITPythonModule
NPCOMPPythonResources
)