Unverified Commit 08252a83 authored by Li Zhang's avatar Li Zhang Committed by GitHub
Browse files

fix build w/o python ffi (#64)

parent 9d7cd629
...@@ -390,7 +390,9 @@ install( ...@@ -390,7 +390,9 @@ install(
) )
# install python api # install python api
install(TARGETS _turbomind DESTINATION ${CMAKE_SOURCE_DIR}/lmdeploy/lib) if (BUILD_PY_FFI)
install(TARGETS _turbomind DESTINATION ${CMAKE_SOURCE_DIR}/lmdeploy/lib)
endif ()
install(TARGETS TransformerTritonBackend DESTINATION ${CMAKE_SOURCE_DIR}/lmdeploy/lib) install(TARGETS TransformerTritonBackend DESTINATION ${CMAKE_SOURCE_DIR}/lmdeploy/lib)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment