diff options
author | Liav A <liavalb@gmail.com> | 2022-11-02 22:28:58 +0200 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2022-11-05 18:00:58 -0600 |
commit | 8d8b0d0a34f68ed850a96e1437084a2e07876f9b (patch) | |
tree | 80de6b017a7d08f461ab2470aee2cd64f8c26293 /Userland/Utilities/CMakeLists.txt | |
parent | 1d0066a5ccba8597c87bd5b9424388ca53a605c4 (diff) | |
download | serenity-8d8b0d0a34f68ed850a96e1437084a2e07876f9b.zip |
Userland: Add support for jails
This happens in two ways:
1. LibCore now has two new methods for creating Jails and attaching
processes to a Jail.
2. We introduce 3 new utilities - lsjails, jail-create and jails-attach,
which list jails, create jails and attach processes to a Jail,
respectively.
Diffstat (limited to 'Userland/Utilities/CMakeLists.txt')
-rw-r--r-- | Userland/Utilities/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Utilities/CMakeLists.txt b/Userland/Utilities/CMakeLists.txt index 9d8870772e..cadc73746b 100644 --- a/Userland/Utilities/CMakeLists.txt +++ b/Userland/Utilities/CMakeLists.txt @@ -90,6 +90,8 @@ target_link_libraries(grep PRIVATE LibRegex) target_link_libraries(gunzip PRIVATE LibCompress) target_link_libraries(gzip PRIVATE LibCompress) target_link_libraries(headless-browser PRIVATE LibCrypto LibGemini LibGfx LibHTTP LibTLS LibWeb LibWebSocket) +target_link_libraries(jail-attach PRIVATE LibCore LibMain) +target_link_libraries(jail-create PRIVATE LibCore LibMain) target_link_libraries(js PRIVATE LibCrypto LibJS LibLine LibLocale LibTextCodec) link_with_locale_data(js) target_link_libraries(keymap PRIVATE LibKeyboard) |