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

if(${WITH_GPU})
  nv_library(memory SRCS memory.cc)
else(${WITH_GPU})
  cc_library(memory SRCS memroy.cc)
endif(${WITH_GPU})