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
326 B

  1. message(-----------------${OPENFST_INCLUDE_DIR}--------------------)
  2. include_directories(${OPENFST_INCLUDE_DIR})
  3. add_library(utils STATIC
  4. wn_string.cc
  5. wn_utils.cc
  6. )
  7. if(NOT ANDROID)
  8. if(MSVC)
  9. target_link_libraries(utils PUBLIC fst)
  10. else()
  11. target_link_libraries(utils PUBLIC fst dl)
  12. endif()
  13. endif()