diff options
author | Andreas Kling <kling@serenityos.org> | 2021-11-29 19:34:04 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-30 23:34:40 +0100 |
commit | 6e2f7a15fb5c4bcb71630f0121e258f645bb63bb (patch) | |
tree | e1501b7398211ab1a6658cf3e551e1c3405bf468 /Userland/Services/InspectorServer/CMakeLists.txt | |
parent | fe003939413d0de648618e2cd5f5c72182c7cf7b (diff) | |
download | serenity-6e2f7a15fb5c4bcb71630f0121e258f645bb63bb.zip |
InspectorServer: Port to LibMain :^)
Diffstat (limited to 'Userland/Services/InspectorServer/CMakeLists.txt')
-rw-r--r-- | Userland/Services/InspectorServer/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/InspectorServer/CMakeLists.txt b/Userland/Services/InspectorServer/CMakeLists.txt index d5ec047757..c3a87b266b 100644 --- a/Userland/Services/InspectorServer/CMakeLists.txt +++ b/Userland/Services/InspectorServer/CMakeLists.txt @@ -16,4 +16,4 @@ set(SOURCES ) serenity_bin(InspectorServer) -target_link_libraries(InspectorServer LibIPC) +target_link_libraries(InspectorServer LibIPC LibMain) |