File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -184,10 +184,6 @@ if (USERVER_BUILD_TESTS)
184
184
add_subdirectory (testsuite)
185
185
endif ()
186
186
187
- find_package (ICU COMPONENTS uc i18n data REQUIRED)
188
- add_library (icuuc ALIAS ICU::uc)
189
- add_library (icui18n ALIAS ICU::i18n)
190
- add_library (icudata ALIAS ICU::data)
191
187
add_subdirectory (universal)
192
188
193
189
if (USERVER_FEATURE_CORE)
Original file line number Diff line number Diff line change @@ -226,6 +226,11 @@ if (USERVER_SANITIZE AND NOT CMAKE_BUILD_TYPE MATCHES "^Rel")
226
226
target_link_libraries (${PROJECT_NAME} PUBLIC userver-compiler-rt-parts )
227
227
endif ()
228
228
229
+ find_package (ICU COMPONENTS uc i18n data REQUIRED)
230
+ add_library (icuuc ALIAS ICU::uc)
231
+ add_library (icui18n ALIAS ICU::i18n)
232
+ add_library (icudata ALIAS ICU::data)
233
+
229
234
target_link_libraries (${PROJECT_NAME}
230
235
PUBLIC
231
236
Threads::Threads
@@ -237,6 +242,9 @@ target_link_libraries(${PROJECT_NAME}
237
242
Boost::regex
238
243
OpenSSL::Crypto
239
244
OpenSSL::SSL
245
+ ICU::uc
246
+ ICU::i18n
247
+ ICU::data
240
248
)
241
249
242
250
if (USERVER_CONAN)
You can’t perform that action at this time.
0 commit comments