You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
624 B

  1. message(STATUS "post_processor dir:${CMAKE_CURRENT_SOURCE_DIR}")
  2. add_library(wetext_utils STATIC utils/wetext_string.cc)
  3. target_link_libraries(wetext_utils PUBLIC glog)
  4. add_library(wetext_processor STATIC
  5. processor/wetext_processor.cc
  6. processor/wetext_token_parser.cc
  7. )
  8. target_link_libraries(wetext_processor PUBLIC dl fst wetext_utils)
  9. #add_executable(processor_main processor/processor_main.cc)
  10. #
  11. #target_link_libraries(processor_main PUBLIC wetext_processor)
  12. add_library(post_processor STATIC
  13. post_processor.cc
  14. )
  15. target_link_libraries(post_processor PUBLIC utils wetext_processor wetext_utils)