CMakeLists.txt 359 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
cc_library(
  pretty_log
  SRCS pretty_log.cc
  DEPS flags)
cc_library(
  string_helper
  SRCS string_helper.cc
  DEPS flags)
cc_test(
  stringprintf_test
  SRCS printf_test.cc
  DEPS gflags)
13
cc_test(to_string_test SRCS to_string_test.cc)
14
cc_test(split_test SRCS split_test.cc)
15 16 17 18
cc_test(
  string_helper_test
  SRCS string_helper_test.cc
  DEPS string_helper)