Skip to content

Commit

Permalink
Merge pull request #481 from MaddTheSane/useModules
Browse files Browse the repository at this point in the history
Have Sparkle build a framework module.
  • Loading branch information
kornelski committed Jan 22, 2015
2 parents 89c21b3 + c067f7a commit ce22598
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Configurations/ConfigCommon.xcconfig
Expand Up @@ -73,4 +73,4 @@ GCC_WARN_UNUSED_VARIABLE = YES
WARNING_CFLAGS_EXTRA = -Wno-custom-atomic-properties -Wno-implicit-atomic-properties

// Turn on all warnings, then disable a few which are almost impossible to avoid
WARNING_CFLAGS = -Wall -Weverything -Wno-empty-translation-unit -Wno-unused-macros -Wno-gnu-statement-expression -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak $(WARNING_CFLAGS_EXTRA)
WARNING_CFLAGS = -Wall -Weverything -Wno-empty-translation-unit -Wno-unused-macros -Wno-gnu-statement-expression -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wno-auto-import $(WARNING_CFLAGS_EXTRA)
6 changes: 6 additions & 0 deletions Sparkle.xcodeproj/project.pbxproj
Expand Up @@ -1722,41 +1722,47 @@
isa = XCBuildConfiguration;
baseConfigurationReference = FA1941CA0D94A70100DD942E /* ConfigFrameworkDebug.xcconfig */;
buildSettings = {
DEFINES_MODULE = YES;
};
name = Debug;
};
1DEB91AF08733DA50010E9CD /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = FA1941D50D94A70100DD942E /* ConfigFrameworkRelease.xcconfig */;
buildSettings = {
DEFINES_MODULE = YES;
};
name = Release;
};
1DEB91B208733DA50010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = FA1941CF0D94A70100DD942E /* ConfigCommonDebug.xcconfig */;
buildSettings = {
CLANG_ENABLE_MODULES = YES;
};
name = Debug;
};
1DEB91B308733DA50010E9CD /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = FA1941CC0D94A70100DD942E /* ConfigCommonRelease.xcconfig */;
buildSettings = {
CLANG_ENABLE_MODULES = YES;
};
name = Release;
};
55C14BBB136EEF1500649790 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = FA1941D30D94A70100DD942E /* ConfigRelaunchDebug.xcconfig */;
buildSettings = {
CLANG_ENABLE_MODULES = NO;
};
name = Debug;
};
55C14BBC136EEF1500649790 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = FA1941D40D94A70100DD942E /* ConfigRelaunchRelease.xcconfig */;
buildSettings = {
CLANG_ENABLE_MODULES = NO;
};
name = Release;
};
Expand Down
1 change: 1 addition & 0 deletions Sparkle/SUAppcast.h
Expand Up @@ -9,6 +9,7 @@
#ifndef SUAPPCAST_H
#define SUAPPCAST_H

#import <Foundation/NSURLDownload.h>
#import "SUExport.h"

@protocol SUAppcastDelegate;
Expand Down

0 comments on commit ce22598

Please sign in to comment.