CMakeLists.txt 678 字节
Newer Older
Y
Yu Yang 已提交
1
add_unittest(capi_test_mats test_Vector.cpp
Y
Yu Yang 已提交
2
  test_Matrix.cpp test_Arguments.cpp)
Y
Yu Yang 已提交
3

Y
Yu Yang 已提交
4 5 6
target_include_directories(capi_test_mats PUBLIC ${PADDLE_CAPI_INC_PATH})
target_link_libraries(capi_test_mats paddle_capi)

Y
Yu Yang 已提交
7 8

add_unittest_without_exec(capi_test_gradientMachine test_GradientMachine.cpp)
Y
Yu Yang 已提交
9 10 11
target_include_directories(capi_test_gradientMachine PUBLIC
  ${PADDLE_CAPI_INC_PATH})
target_link_libraries(capi_test_gradientMachine paddle_capi)
Y
Yu Yang 已提交
12
add_test(NAME capi_test_gradientMachine
13 14
  COMMAND ${PADDLE_SOURCE_DIR}/paddle/.set_python_path.sh -d ${PADDLE_SOURCE_DIR}/python ${CMAKE_CURRENT_BINARY_DIR}/capi_test_gradientMachine
  WORKING_DIRECTORY ${PADDLE_SOURCE_DIR}/paddle/capi/tests)