diff options
author | Andreas Kling <kling@serenityos.org> | 2021-08-25 19:39:30 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-26 00:54:27 +0200 |
commit | 39d9373bca5a387e72d062c3533518d90f2a1616 (patch) | |
tree | 44c889030d574fd64f2917b33259123c77378ec7 /Userland/Applications/FileManager/CMakeLists.txt | |
parent | bdcd0abf9dd96fadfc456c165f9aba365d5a30f7 (diff) | |
download | serenity-39d9373bca5a387e72d062c3533518d90f2a1616.zip |
FileManager: Use LibConfig instead of Core::ConfigFile :^)
Diffstat (limited to 'Userland/Applications/FileManager/CMakeLists.txt')
-rw-r--r-- | Userland/Applications/FileManager/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/FileManager/CMakeLists.txt b/Userland/Applications/FileManager/CMakeLists.txt index 3d66741994..a021765c57 100644 --- a/Userland/Applications/FileManager/CMakeLists.txt +++ b/Userland/Applications/FileManager/CMakeLists.txt @@ -22,4 +22,4 @@ set(SOURCES ) serenity_app(FileManager ICON app-file-manager) -target_link_libraries(FileManager LibGUI LibDesktop) +target_link_libraries(FileManager LibGUI LibDesktop LibConfig) |