diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-08-10 10:29:46 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-08-10 10:29:46 +0200 |
commit | 6e50631e35c105f8dd7cd98c8f5378a288d87ae6 (patch) | |
tree | fdaeda56b58e7046756fe825df2e9d522cca4d32 /Libraries/LibGUI/Makefile | |
parent | fc3667c02696e5959b298210880fabfda5d233c0 (diff) | |
download | serenity-6e50631e35c105f8dd7cd98c8f5378a288d87ae6.zip |
LibGUI: Add GJsonArrayModel, a simple JSON-data-file-as-GModel helper
This makes it very easy to expose JSON files as GModels. :^)
Diffstat (limited to 'Libraries/LibGUI/Makefile')
-rw-r--r-- | Libraries/LibGUI/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibGUI/Makefile b/Libraries/LibGUI/Makefile index 86224b3c65..6e67e30373 100644 --- a/Libraries/LibGUI/Makefile +++ b/Libraries/LibGUI/Makefile @@ -52,6 +52,7 @@ OBJS = \ GAbstractButton.o \ GListView.o \ GComboBox.o \ + GJsonArrayModel.o \ GWindow.o LIBRARY = libgui.a |