-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
Eliminated requirement to use -all_load linker flag.
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// TYPHOON FRAMEWORK | ||
// Copyright 2013, Jasper Blues & Contributors | ||
// All Rights Reserved. | ||
// | ||
// NOTICE: The authors permit you to use, modify, and distribute this file | ||
// in accordance with the terms of the license agreement accompanying it. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
/** | ||
Add this macro before each category implementation, so we don't have to use | ||
-all_load or -force_load to load object files from static libraries that only contain | ||
categories and no classes. | ||
See http://developer.apple.com/library/mac/#qa/qa2006/qa1490.html for more info. | ||
Shamelessly borrowed from Three20 and RestKit | ||
*/ | ||
|
||
#define TYPHOON_FIX_CATEGORY_BUG(name) \ | ||
@interface TYPHOON_FIX_CATEGORY_BUG_##name : NSObject \ | ||
@end \ | ||
@implementation TYPHOON_FIX_CATEGORY_BUG_##name \ | ||
@end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.