mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
These are still included in LibUnicode, but this updates their location and the include paths of other files which include them.
17 lines
509 B
CMake
17 lines
509 B
CMake
include(${SerenityOS_SOURCE_DIR}/Meta/CMake/unicode_data.cmake)
|
|
|
|
set(SOURCES
|
|
CharacterTypes.cpp
|
|
CurrencyCode.cpp
|
|
../LibLocale/DateTimeFormat.cpp
|
|
../LibLocale/Locale.cpp
|
|
../LibLocale/NumberFormat.cpp
|
|
../LibLocale/PluralRules.cpp
|
|
../LibLocale/RelativeTimeFormat.cpp
|
|
${UNICODE_DATA_SOURCES}
|
|
)
|
|
|
|
serenity_lib(LibUnicode unicode)
|
|
target_link_libraries(LibUnicode LibCore)
|
|
target_compile_definitions(LibUnicode PRIVATE ENABLE_UNICODE_DATA=$<BOOL:${ENABLE_UNICODE_DATABASE_DOWNLOAD}>)
|