mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-04-04 19:55:32 +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.
11 lines
269 B
CMake
11 lines
269 B
CMake
compile_gml(MainWindow.gml MainWindowGML.h main_window_gml)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
TextEditorWidget.cpp
|
|
MainWindowGML.h
|
|
)
|
|
|
|
serenity_app(TextEditor ICON app-text-editor)
|
|
target_link_libraries(TextEditor LibWeb LibMarkdown LibGUI LibShell LibRegex LibDesktop)
|