CMakeLists.txt 305 字节
Newer Older
1
if(WITH_PYTHON)
2
  cc_library(paddle_pybind SHARED
3
    SRCS pybind.cc exception.cc protobuf.cc
F
fengjiayi 已提交
4
    DEPS pybind python backward proto_desc tensor_array paddle_memory executor
L
Luo Tao 已提交
5
    ${GLOB_OP_LIB})
6
endif(WITH_PYTHON)
7 8

cc_binary(print_operators_doc SRCS print_operators_doc.cc DEPS ${GLOB_OP_LIB} tensor_array)