diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-10 21:45:32 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-10 21:45:32 +0100 |
commit | e87756424d3fb0724930425e7cffa83fce073e7a (patch) | |
tree | da32d508315211123e5df6b3e06e43a1add6e287 /DevTools/HackStudio/Makefile | |
parent | a04ab219d16d3dc800a693ee1ff1db62cb84f709 (diff) | |
download | serenity-e87756424d3fb0724930425e7cffa83fce073e7a.zip |
HackStudio: Introduce a Tool class with subs CursorTool and WidgetTool
These will be used to draw out new widgets on a FormWidget, or in the
case of CursorTool, to select and manipulate existing widgets.
Diffstat (limited to 'DevTools/HackStudio/Makefile')
-rw-r--r-- | DevTools/HackStudio/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/DevTools/HackStudio/Makefile b/DevTools/HackStudio/Makefile index 964f5dd86c..ca2c4fabec 100644 --- a/DevTools/HackStudio/Makefile +++ b/DevTools/HackStudio/Makefile @@ -12,6 +12,9 @@ OBJS = \ Editor.o \ EditorWrapper.o \ Locator.o \ + Tool.o \ + CursorTool.o \ + WidgetTool.o \ main.o APP = HackStudio |