Hi!
We are trying to use the ICU library in our project that is based on the bazel build system and we are having some trouble including all the things we need. We cannot seem to find a target to include the `StringSearch` class definition. Even after adding all targets to our bazel build file, the compiler is still complaining about a non-defined class (this however does not happen when we don't try to use the class, ex. with just doing "#include "unicode/stsearch.h"). The linker error is as follows:
ld.lld: error: undefined reference due to --no-allow-shlib-undefined: icu_75::StringSearch::StringSearch(icu_75::UnicodeString const&, icu_75::UnicodeString const&, icu_75::RuleBasedCollator*, icu_75::BreakIterator*, UErrorCode&)
How to correctly include and use the `StringSearch` class with our bazel project?