CMakeLists.txt 401 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
if(WITH_CUSTOM_DEVICE)
  cc_library(
    custom_context
    SRCS custom_context.cc
    DEPS phi_device_context device_manager)
  cc_library(
    custom_device
    SRCS custom_device.cc
    DEPS device_base device_context)
  cc_test(
    custom_device_test
    SRCS custom_device_test.cc
    DEPS device_manager device_context)
14 15 16 17
  cc_test(
    capi_test
    SRCS capi_test.cc
    DEPS phi_capi)
18
endif()