diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2021-06-15 15:16:32 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-17 11:03:51 +0200 |
commit | 631d36fd9821e48b3b3b53ac609e2e50b254d15b (patch) | |
tree | 48f8af868a0ff3a66bb8d8435aca497bef093113 /Userland/Applications/HexEditor | |
parent | 6e094b8dbe91bea983284c747eaba5c6083eb364 (diff) | |
download | serenity-631d36fd9821e48b3b3b53ac609e2e50b254d15b.zip |
Everywhere: Add component declarations
This adds component declarations so that users can select to not build
certain parts of the OS.
Diffstat (limited to 'Userland/Applications/HexEditor')
-rw-r--r-- | Userland/Applications/HexEditor/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Userland/Applications/HexEditor/CMakeLists.txt b/Userland/Applications/HexEditor/CMakeLists.txt index cfc4cd3cfa..18bad55a26 100644 --- a/Userland/Applications/HexEditor/CMakeLists.txt +++ b/Userland/Applications/HexEditor/CMakeLists.txt @@ -1,3 +1,9 @@ +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) |