diff options
author | Jun Zhang <jun@junz.org> | 2022-01-06 17:48:49 +0800 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-01-06 13:32:22 +0100 |
commit | 0ac7931545a56519e7ba4617ec6fff6323365eef (patch) | |
tree | ba755e8a811b54a36563811e33d60cc06b89ae56 /Userland/Utilities/CMakeLists.txt | |
parent | 81492b3cee16f53afb5a721698ec0f6f61735428 (diff) | |
download | serenity-0ac7931545a56519e7ba4617ec6fff6323365eef.zip |
Utilities/ln: Port to LibMain
This patch simply ports the utility ln to LibMain :^)
Diffstat (limited to 'Userland/Utilities/CMakeLists.txt')
-rw-r--r-- | Userland/Utilities/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Utilities/CMakeLists.txt b/Userland/Utilities/CMakeLists.txt index 677c795018..aad7dddba2 100644 --- a/Userland/Utilities/CMakeLists.txt +++ b/Userland/Utilities/CMakeLists.txt @@ -110,6 +110,7 @@ target_link_libraries(js LibJS LibLine LibMain) link_with_unicode_data(js) target_link_libraries(keymap LibKeyboard LibMain) target_link_libraries(less LibMain) +target_link_libraries(ln LibMain) target_link_libraries(logout LibMain) target_link_libraries(ls LibMain) target_link_libraries(lspci LibPCIDB LibMain) |