mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 16:15:10 +00:00

Otherwise, we end up propagating those dependencies into targets that link against that library, which creates unnecessary link-time dependencies. Also included are changes to readd now missing dependencies to tools that actually need them.
12 lines
247 B
CMake
12 lines
247 B
CMake
serenity_component(
|
|
Terminal
|
|
REQUIRED
|
|
TARGETS Terminal utmpupdate
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
serenity_app(Terminal ICON app-terminal)
|
|
target_link_libraries(Terminal PRIVATE LibConfig LibCore LibDesktop LibGfx LibGUI LibVT LibMain)
|