mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-17 13:39:25 +00:00
This adds component declarations so that users can select to not build certain parts of the OS.
19 lines
353 B
CMake
19 lines
353 B
CMake
serenity_component(
|
|
IRCClient
|
|
TARGETS IRCClient
|
|
)
|
|
|
|
set(SOURCES
|
|
IRCAppWindow.cpp
|
|
IRCChannel.cpp
|
|
IRCChannelMemberListModel.cpp
|
|
IRCClient.cpp
|
|
IRCLogBuffer.cpp
|
|
IRCQuery.cpp
|
|
IRCWindow.cpp
|
|
IRCWindowListModel.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_app(IRCClient ICON app-irc-client)
|
|
target_link_libraries(IRCClient LibWeb LibGUI)
|