ladybird/UI/Qt/CMakeLists.txt
Timothy Flynn 9e1f001ffe LibWebView+Services+UI: Move the EventLoop implementations to LibWebView
We currently compile the Qt event loop files multiple times, for every
target which wants to use them. This patch moves these to LibWebView as
a central location to avoid this.
2024-11-11 07:35:43 -05:00

22 lines
530 B
CMake

qt_add_executable(ladybird ${LADYBIRD_SOURCES})
target_sources(ladybird PRIVATE
Application.cpp
AutoComplete.cpp
BrowserWindow.cpp
FindInPageWidget.cpp
Icon.cpp
InspectorWidget.cpp
LocationEdit.cpp
Settings.cpp
SettingsDialog.cpp
Tab.cpp
TabBar.cpp
TaskManagerWindow.cpp
TVGIconEngine.cpp
StringUtils.cpp
WebContentView.cpp
ladybird.qrc
main.cpp
)
target_link_libraries(ladybird PRIVATE Qt::Core Qt::Gui Qt::Network Qt::Widgets)
create_ladybird_bundle(ladybird)