mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
31 lines
659 B
CMake
31 lines
659 B
CMake
include(${SerenityOS_SOURCE_DIR}/Meta/CMake/unicode_data.cmake)
|
|
|
|
set(SOURCES
|
|
CharacterTypes.cpp
|
|
CurrencyCode.cpp
|
|
DateTimeFormat.cpp
|
|
DisplayNames.cpp
|
|
DurationFormat.cpp
|
|
Emoji.cpp
|
|
ICU.cpp
|
|
IDNA.cpp
|
|
ListFormat.cpp
|
|
Locale.cpp
|
|
Normalize.cpp
|
|
NumberFormat.cpp
|
|
PluralRules.cpp
|
|
RelativeTimeFormat.cpp
|
|
Segmenter.cpp
|
|
String.cpp
|
|
TimeZone.cpp
|
|
UnicodeKeywords.cpp
|
|
${UNICODE_DATA_SOURCES}
|
|
)
|
|
|
|
set(GENERATED_SOURCES ${CURRENT_LIB_GENERATED})
|
|
|
|
serenity_lib(LibUnicode unicode)
|
|
|
|
find_package(ICU 74 REQUIRED COMPONENTS data i18n uc)
|
|
target_link_libraries(LibUnicode PRIVATE ICU::i18n ICU::uc ICU::data)
|