CMakeLists.txt 271 字节
Newer Older
1 2 3 4 5 6 7 8
cc_library(
  shell
  SRCS shell.cc
  DEPS string_helper glog timer enforce)
cc_library(
  fs
  SRCS fs.cc
  DEPS string_helper glog boost enforce shell)
9

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