mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 16:55:09 +00:00
24 lines
625 B
CMake
24 lines
625 B
CMake
serenity_component(
|
|
HexEditor
|
|
RECOMMENDED
|
|
TARGETS HexEditor
|
|
)
|
|
|
|
compile_gml(HexEditorWindow.gml HexEditorWindowGML.h hex_editor_window_gml)
|
|
compile_gml(GoToOffsetDialog.gml GoToOffsetDialogGML.h go_to_offset_dialog_gml)
|
|
compile_gml(FindDialog.gml FindDialogGML.h find_dialog_gml)
|
|
|
|
set(SOURCES
|
|
HexEditor.cpp
|
|
HexEditorWidget.cpp
|
|
HexDocument.cpp
|
|
FindDialog.cpp
|
|
GoToOffsetDialog.cpp
|
|
main.cpp
|
|
FindDialogGML.h
|
|
GoToOffsetDialogGML.h
|
|
HexEditorWindowGML.h
|
|
)
|
|
|
|
serenity_app(HexEditor ICON app-hex-editor)
|
|
target_link_libraries(HexEditor LibGUI LibConfig LibFileSystemAccessClient LibMain)
|