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

add_library(wetext_processor STATIC
wetext_processor.cc
wetext_token_parser.cc
)
if(ANDROID)
target_link_libraries(wetext_processor PUBLIC fst wetext_utils)
else()
if(MSVC)
target_link_libraries(wetext_processor PUBLIC fst wetext_utils)
else()
target_link_libraries(wetext_processor PUBLIC dl fst wetext_utils)
endif()
endif()