CMakeLists.txt 453 字节
Newer Older
1 2
cc_library(stringpiece SRCS piece.cc)
cc_test(stringpiece_test SRCS piece_test.cc DEPS stringpiece glog gflags)
Y
Yi Wang 已提交
3
cc_test(stringprintf_test SRCS printf_test.cc DEPS glog gflags)
4
cc_test(to_string_test SRCS to_string_test.cc)
L
Luo Tao 已提交
5 6 7

if(NOT WITH_C_API AND WITH_FLUID)
  file(GLOB STRING_HEADERS *.h)
8 9
  install(FILES ${STRING_HEADERS} DESTINATION include/paddle/string)
  install(FILES tinyformat/tinyformat.h DESTINATION include/paddle/string/tinyformat)
L
Luo Tao 已提交
10
endif()