mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
30 lines
656 B
CMake
30 lines
656 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 REQUIRED COMPONENTS data i18n uc)
|
|
target_link_libraries(LibUnicode PRIVATE ICU::i18n ICU::uc ICU::data)
|