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()
|