summaryrefslogtreecommitdiff
path: root/Userland/Applications
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2022-09-02 13:08:22 -0400
committerTim Flynn <trflynn89@pm.me>2022-09-05 14:37:16 -0400
commit9e860d973ec04891f796a344bbc7281dd2dd9868 (patch)
treee85838e49adb73038d0709f8427bd0daaad7c611 /Userland/Applications
parentf082b6ae48820f3660a3da26ec3c58b6d3416dd4 (diff)
downloadserenity-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.txt2
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)