Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sentencepiece 0.2.0 #48

Merged
merged 11 commits into from
Mar 15, 2024
Prev Previous commit
Next Next commit
link extra abseil libs in cmake test on win
h-vetinari committed Mar 15, 2024
commit ece7e3208081d71ba134458032d29795cd7e29da
5 changes: 5 additions & 0 deletions recipe/cmake_test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -8,4 +8,9 @@ if(MSVC)
# static libsentencepiece leaks its host dependencies;
# need to link them as well
target_link_libraries(test_me libprotobuf abseil_dll)
# absl_flag* are always static on windows
target_link_libraries(test_me absl_log_flags absl_flags_commandlineflag
absl_flags_commandlineflag_internal absl_flags_config absl_flags_internal
absl_flags_marshalling absl_flags_parse absl_flags_private_handle_accessor
absl_flags_program_name absl_flags_reflection absl_flags_usage absl_flags_usage_internal)
endif()