mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 13:50:00 +00:00
Once upon a time, we needed the UI-specific event loops outside of the UI process. This is no longer the case. Let's move the event loops back to the UI folder to remove the awkward interface library we were left with.
41 lines
991 B
CMake
41 lines
991 B
CMake
qt_add_executable(ladybird main.cpp)
|
|
target_sources(ladybird PRIVATE
|
|
Application.cpp
|
|
Autocomplete.cpp
|
|
BrowserWindow.cpp
|
|
EventLoopImplementationQt.cpp
|
|
EventLoopImplementationQtEventTarget.cpp
|
|
FindInPageWidget.cpp
|
|
Icon.cpp
|
|
LocationEdit.cpp
|
|
Menu.cpp
|
|
Settings.cpp
|
|
StringUtils.cpp
|
|
Tab.cpp
|
|
TabBar.cpp
|
|
TVGIconEngine.cpp
|
|
WebContentView.cpp
|
|
ladybird.qrc
|
|
)
|
|
target_link_libraries(ladybird PRIVATE Qt::Core Qt::Gui Qt::Widgets)
|
|
create_ladybird_bundle(ladybird)
|
|
|
|
if (WIN32)
|
|
lagom_windows_bin(ladybird CONSOLE)
|
|
qt_generate_deploy_script(
|
|
TARGET ladybird
|
|
OUTPUT_SCRIPT ladybird_deploy_script
|
|
CONTENT "
|
|
qt_deploy_runtime_dependencies(
|
|
EXECUTABLE $<TARGET_FILE:ladybird>
|
|
PLUGINS_DIR $<TARGET_FILE_DIR:ladybird>
|
|
NO_TRANSLATIONS
|
|
)
|
|
")
|
|
|
|
add_custom_command(TARGET ladybird POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND}
|
|
-P ${ladybird_deploy_script}
|
|
COMMAND_EXPAND_LISTS
|
|
)
|
|
endif()
|