CMakeLists.txt 151 字节
Newer Older
1
add_subdirectory(detail)
2 3 4 5

if(${WITH_GPU})
  nv_library(memory SRCS memory.cc)
else(${WITH_GPU})
L
liaogang 已提交
6
  cc_library(memory SRCS memory.cc)
7
endif(${WITH_GPU})