mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
24 lines
609 B
CMake
24 lines
609 B
CMake
qt_add_executable(ladybird ${LADYBIRD_SOURCES})
|
|
target_sources(ladybird PRIVATE
|
|
Application.cpp
|
|
AutoComplete.cpp
|
|
BrowserWindow.cpp
|
|
EventLoopImplementationQt.cpp
|
|
EventLoopImplementationQtEventTarget.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)
|