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.

12 lines
262 B

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