CMakeLists.txt 254 字节
Newer Older
1 2 3 4 5 6 7
cc_library(
  shell
  SRCS shell.cc
  DEPS string_helper glog timer enforce)
cc_library(
  fs
  SRCS fs.cc
R
Ruibiao Chen 已提交
8
  DEPS string_helper glog enforce shell)
9

10 11 12 13 14 15
cc_test(
  test_fs
  SRCS test_fs.cc
  DEPS fs shell)
if(WITH_CRYPTO)
  add_subdirectory(crypto)
16
endif()