diff options
author | Andreas Kling <kling@serenityos.org> | 2021-11-22 23:25:57 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-22 23:52:47 +0100 |
commit | c5c54f634e779e13aee73174c395fcbbd17ba5e5 (patch) | |
tree | 20fa7b863819d466779b2a251e89a315735f1c57 /Userland/Applications/FileManager/CMakeLists.txt | |
parent | 9cf874ef9a72988e6e909c0ce92848a8f96b1a63 (diff) | |
download | serenity-c5c54f634e779e13aee73174c395fcbbd17ba5e5.zip |
FileManager: Port to LibMain :^)
This simplifies a handful of calls to pledge() and sigaction().
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 a021765c57..ff3d7e8f3c 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 LibConfig) +target_link_libraries(FileManager LibGUI LibDesktop LibConfig LibMain) |