CMakeLists.txt 390 字节
Newer Older
Y
Yi Wang 已提交
1
if(${WITH_GPU})
2
  nv_library(system_allocator SRCS system_allocator.cc DEPS gflags)
L
liaogang 已提交
3 4 5
  nv_test(system_allocator_test
    SRCS system_allocator_test.cc
    DEPS system_allocator gpu_info gflags)
Y
Yi Wang 已提交
6
else(${WITH_GPU})
7 8
  cc_library(system_allocator SRCS system_allocator.cc DEPS gflags)
  cc_test(system_allocator_test SRCS system_allocator_test.cc DEPS system_allocator gflags)
Y
Yi Wang 已提交
9
endif(${WITH_GPU})