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.

11 lines
213 B

  1. add_library(utils STATIC
  2. wn_string.cc
  3. wn_utils.cc
  4. )
  5. if(NOT ANDROID)
  6. if(MSVC)
  7. target_link_libraries(utils PUBLIC fst)
  8. else()
  9. target_link_libraries(utils PUBLIC fst dl)
  10. endif()
  11. endif()