mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 19:25:07 +00:00

Most of the code here is based off the implementation of how TextEditor uses FileSystemAccessClient.
23 lines
597 B
CMake
23 lines
597 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
|
|
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)
|