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.

13 lines
359 B

  1. add_library(wetext_processor STATIC
  2. wetext_processor.cc
  3. wetext_token_parser.cc
  4. )
  5. if(ANDROID)
  6. target_link_libraries(wetext_processor PUBLIC fst wetext_utils)
  7. else()
  8. if(MSVC)
  9. target_link_libraries(wetext_processor PUBLIC fst wetext_utils)
  10. else()
  11. target_link_libraries(wetext_processor PUBLIC dl fst wetext_utils)
  12. endif()
  13. endif()