Skip to content

Commit

Permalink
Enable implicit @synthesize
Browse files Browse the repository at this point in the history
I haven’t removed the current use of @synthesize since that results in a build that throws exceptions and crashes.
  • Loading branch information
sorbits committed Sep 12, 2012
1 parent 4b76514 commit 065f555
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions target
Expand Up @@ -14,9 +14,9 @@ FLAGS += -DNDEBUG -Os
# LINK = OakDebug # LINK = OakDebug


CXX_FLAGS += -std=c++11 -stdlib=libc++ CXX_FLAGS += -std=c++11 -stdlib=libc++
OBJC_FLAGS += -std=c99 -fobjc-abi-version=3 OBJC_FLAGS += -Xclang -fobjc-default-synthesize-properties -std=c99 -fobjc-abi-version=3
OBJCXX_FLAGS += -std=c++11 -stdlib=libc++ -fobjc-abi-version=3 OBJCXX_FLAGS += -std=c++11 -stdlib=libc++ -fobjc-abi-version=3
OBJCXX_FLAGS += -fobjc-call-cxx-cdtors OBJCXX_FLAGS += -Xclang -fobjc-default-synthesize-properties -fobjc-call-cxx-cdtors
LIBS += c++ LIBS += c++


LN_FLAGS += -m64 -mmacosx-version-min=$APP_MIN_OS -isysroot "$sdk" LN_FLAGS += -m64 -mmacosx-version-min=$APP_MIN_OS -isysroot "$sdk"
Expand Down

0 comments on commit 065f555

Please sign in to comment.