summaryrefslogtreecommitdiff
path: root/Userland/Applications/IRCClient/CMakeLists.txt
blob: 73dd4534aeb6067a28710355e0e441fa19a04418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)