mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:28:12 +00:00

New serenity_app() targets can be defined which allows application icons to be emedded directly into the executable. The embedded icons will then be used when creating an icon for that file in LibGUI.
19 lines
454 B
CMake
19 lines
454 B
CMake
compile_gml(BrowserWindow.gml BrowserWindowGML.h browser_window_gml)
|
|
compile_gml(Tab.gml TabGML.h tab_gml)
|
|
|
|
set(SOURCES
|
|
BookmarksBarWidget.cpp
|
|
BrowserConsoleClient.cpp
|
|
ConsoleWidget.cpp
|
|
DownloadWidget.cpp
|
|
History.cpp
|
|
InspectorWidget.cpp
|
|
main.cpp
|
|
Tab.cpp
|
|
WindowActions.cpp
|
|
BrowserWindowGML.h
|
|
TabGML.h
|
|
)
|
|
|
|
serenity_app(Browser ICON app-browser)
|
|
target_link_libraries(Browser LibWeb LibProtocol LibGUI LibDesktop)
|