serenity/Applications/HexEditor/CMakeLists.txt
William Marlow 39364bdda4 Build: Embed application icons directly in the executables.
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.
2020-12-21 00:12:59 +01:00

8 lines
153 B
CMake

set(SOURCES
HexEditor.cpp
HexEditorWidget.cpp
main.cpp
)
serenity_app(HexEditor ICON app-hexeditor)
target_link_libraries(HexEditor LibGUI)