CMakeLists.txt 193 字节
Newer Older
1
if(WITH_PYTHON)
2
  cc_library(proto_bind SRCS protobuf.cc)
3
  cc_library(paddle_pybind SHARED
4
    SRCS pybind.cc
5
    DEPS proto_bind pybind python backward
L
Luo Tao 已提交
6
    ${GLOB_OP_LIB})
7
endif(WITH_PYTHON)