diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-09-02 13:08:22 -0400 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-09-05 14:37:16 -0400 |
commit | 9e860d973ec04891f796a344bbc7281dd2dd9868 (patch) | |
tree | e85838e49adb73038d0709f8427bd0daaad7c611 /Userland/Applications | |
parent | f082b6ae48820f3660a3da26ec3c58b6d3416dd4 (diff) | |
download | serenity-9e860d973ec04891f796a344bbc7281dd2dd9868.zip |
LibLocale: Move locale source files to the LibLocale library
Everything is now setup to create the LibLocale library and link it
where needed.
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/ClockSettings/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/ClockSettings/CMakeLists.txt b/Userland/Applications/ClockSettings/CMakeLists.txt index 1e134c9fc4..8b32166c8d 100644 --- a/Userland/Applications/ClockSettings/CMakeLists.txt +++ b/Userland/Applications/ClockSettings/CMakeLists.txt @@ -18,5 +18,5 @@ set(SOURCES ) serenity_app(ClockSettings ICON app-analog-clock) # FIXME: Create a ClockSettings icon. -target_link_libraries(ClockSettings LibGUI LibMain LibUnicode) +target_link_libraries(ClockSettings LibGUI LibMain LibLocale) link_with_locale_data(ClockSettings) |