add_library(cruntime dyn_memref.cpp dyn_memref.h data_type.h) target_include_directories(cruntime PRIVATE ${ONNX_MLIR_SRC_ROOT} ${ONNX_MLIR_BIN_ROOT} ${ONNX_MLIR_SRC_ROOT}) pybind11_add_module(pyruntime dyn_memref.cpp dyn_memref.h runtime.cpp runtime.hpp) target_link_libraries(pyruntime PRIVATE ${CMAKE_DL_LIBS}) target_include_directories(pyruntime PRIVATE ${ONNX_MLIR_SRC_ROOT} ${ONNX_MLIR_BIN_ROOT} ${ONNX_MLIR_SRC_ROOT}) add_dependencies(pyruntime cruntime)