summaryrefslogtreecommitdiff
path: root/Applications/FontEditor/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-03 15:23:13 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-03 15:23:13 +0200
commitdde224fe442751b09aa858c35479d2fa69ead1cb (patch)
treeac1622d720ce7b68f250a3c3572b4ae1a6b16dff /Applications/FontEditor/Makefile
parentb9738fa8ac001945d440d2c078d8a3ec2b2a893b (diff)
downloadserenity-dde224fe442751b09aa858c35479d2fa69ead1cb.zip
FontEditor: Break out classes into separate files.
Diffstat (limited to 'Applications/FontEditor/Makefile')
-rw-r--r--Applications/FontEditor/Makefile4
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