mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:38:11 +00:00
11 lines
269 B
CMake
11 lines
269 B
CMake
set(TEST_SOURCES
|
|
TestDateTimeFormat.cpp
|
|
TestLocale.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibLocale LIBS LibLocale)
|
|
|
|
get_filename_component(target "${source}" NAME_WLE)
|
|
link_with_locale_data("${target}")
|
|
endforeach()
|