mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
9e1f001ffe
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.
22 lines
530 B
CMake
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)
|