diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-03 15:23:13 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-03 15:23:13 +0200 |
commit | dde224fe442751b09aa858c35479d2fa69ead1cb (patch) | |
tree | ac1622d720ce7b68f250a3c3572b4ae1a6b16dff /Applications/FontEditor/Makefile | |
parent | b9738fa8ac001945d440d2c078d8a3ec2b2a893b (diff) | |
download | serenity-dde224fe442751b09aa858c35479d2fa69ead1cb.zip |
FontEditor: Break out classes into separate files.
Diffstat (limited to 'Applications/FontEditor/Makefile')
-rw-r--r-- | Applications/FontEditor/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Applications/FontEditor/Makefile b/Applications/FontEditor/Makefile index b7e27cbfb9..7999e83d7a 100644 --- a/Applications/FontEditor/Makefile +++ b/Applications/FontEditor/Makefile @@ -1,10 +1,12 @@ OBJS = \ FontEditor.o \ + GlyphMapWidget.o \ + GlyphEditorWidget.o \ main.o APP = FontEditor -STANDARD_FLAGS = -std=c++17 +STANDARD_FLAGS = -std=c++17 -Wno-sized-deallocation WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough FLAVOR_FLAGS = -fno-exceptions -fno-rtti OPTIMIZATION_FLAGS = -Os |