mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-20 11:36:10 +00:00
19 lines
445 B
CMake
19 lines
445 B
CMake
qt_add_executable(ladybird ${LADYBIRD_SOURCES})
|
|
target_sources(ladybird PRIVATE
|
|
Application.cpp
|
|
Autocomplete.cpp
|
|
BrowserWindow.cpp
|
|
FindInPageWidget.cpp
|
|
Icon.cpp
|
|
LocationEdit.cpp
|
|
Settings.cpp
|
|
Tab.cpp
|
|
TabBar.cpp
|
|
TVGIconEngine.cpp
|
|
StringUtils.cpp
|
|
WebContentView.cpp
|
|
ladybird.qrc
|
|
main.cpp
|
|
)
|
|
target_link_libraries(ladybird PRIVATE Qt::Core Qt::Gui Qt::Widgets)
|
|
create_ladybird_bundle(ladybird)
|