diff options
author | David Lindbom <hi@davidlindbom.se> | 2021-12-11 17:23:20 +0100 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2021-12-11 13:16:55 -0800 |
commit | 235a2b35d68117611b617776003d587bf2fdc722 (patch) | |
tree | 407d032e6bbf0c3c04e84c6e95eaed26bf6402ae /Userland/Utilities/CMakeLists.txt | |
parent | e34eb3e36d880d40a1e10a19dfa3f74e5d50c43c (diff) | |
download | serenity-235a2b35d68117611b617776003d587bf2fdc722.zip |
passwd: Port to LibMain
Diffstat (limited to 'Userland/Utilities/CMakeLists.txt')
-rw-r--r-- | Userland/Utilities/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/CMakeLists.txt b/Userland/Utilities/CMakeLists.txt index 0c937232f3..169be83bf8 100644 --- a/Userland/Utilities/CMakeLists.txt +++ b/Userland/Utilities/CMakeLists.txt @@ -101,7 +101,7 @@ target_link_libraries(notify LibGUI) target_link_libraries(nproc LibMain) target_link_libraries(open LibDesktop) target_link_libraries(pape LibGUI) -target_link_libraries(passwd LibCrypt) +target_link_libraries(passwd LibCrypt LibMain) target_link_libraries(paste LibGUI) target_link_libraries(pgrep LibRegex) target_link_libraries(pls LibCrypt) |