diff options
author | Teddy Wing | 2023-09-25 01:44:51 +0200 |
---|---|---|
committer | Teddy Wing | 2023-09-25 01:45:27 +0200 |
commit | f8bd83d4bf2dffafefd4f5532c8bc8128278b4a7 (patch) | |
tree | 185df736f94ef2cc5cf244695ab64aed96270967 | |
parent | 4157ed88b241631b194046692bbf0e4464e839e8 (diff) | |
download | Base-Windowed-Application-f8bd83d4bf2dffafefd4f5532c8bc8128278b4a7.tar.bz2 |
Makefile: Add warning and error compiler flags
These are useful to have active to highlight easy to catch mistakes.
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -9,6 +9,7 @@ OBJECTS := $(SOURCES:%.m=%.o) LOCALIZABLE_STRINGS := $(shell find Internationalization -name Localizable.strings) CFLAGS += -x objective-c +CFLAGS += -Wall -Werror LDFLAGS += -framework Cocoa |