Skip to content

Commit

Permalink
Now using ccache. Modules are disabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
macmade committed May 5, 2017
1 parent 496d72a commit 9d875ad
Show file tree
Hide file tree
Showing 18 changed files with 254 additions and 21 deletions.
17 changes: 15 additions & 2 deletions Console.xcodeproj/project.pbxproj
Expand Up @@ -24,6 +24,7 @@
05BF80111BAC754400A88F65 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 05BF800D1BAC754400A88F65 /* MainMenu.xib */; };
05D79B3B1E6E116D00A9467D /* PreferencesWindowController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 05D79B391E6E116D00A9467D /* PreferencesWindowController.xib */; };
05D79B411E6E117900A9467D /* PreferencesWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 05D79B3F1E6E117900A9467D /* PreferencesWindowController.m */; };
05EE15DB1EBCEBC8004AED58 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05EE15DA1EBCEBC8004AED58 /* Cocoa.framework */; };
05F921721BB0AACE00FD011C /* ASLSender.m in Sources */ = {isa = PBXBuildFile; fileRef = 05F921711BB0AACE00FD011C /* ASLSender.m */; };
/* End PBXBuildFile section */

Expand Down Expand Up @@ -59,6 +60,7 @@
05D79B3C1E6E117900A9467D /* Preferences.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Preferences.h; sourceTree = "<group>"; };
05D79B3E1E6E117900A9467D /* PreferencesWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PreferencesWindowController.h; sourceTree = "<group>"; };
05D79B3F1E6E117900A9467D /* PreferencesWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PreferencesWindowController.m; sourceTree = "<group>"; };
05EE15DA1EBCEBC8004AED58 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
05F921701BB0AACE00FD011C /* ASLSender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASLSender.h; sourceTree = "<group>"; };
05F921711BB0AACE00FD011C /* ASLSender.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASLSender.m; sourceTree = "<group>"; };
05F921731BB0AC0F00FD011C /* Console-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Console-Prefix.pch"; sourceTree = "<group>"; };
Expand All @@ -69,6 +71,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
05EE15DB1EBCEBC8004AED58 /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -115,6 +118,7 @@
05D79B381E6E081200A9467D /* README.md */,
05BF7FF61BAC748800A88F65 /* Console */,
05BF7FF51BAC748800A88F65 /* Products */,
05EE15D91EBCEBC8004AED58 /* Frameworks */,
);
sourceTree = "<group>";
};
Expand Down Expand Up @@ -179,6 +183,14 @@
path = UI;
sourceTree = "<group>";
};
05EE15D91EBCEBC8004AED58 /* Frameworks */ = {
isa = PBXGroup;
children = (
05EE15DA1EBCEBC8004AED58 /* Cocoa.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
Expand Down Expand Up @@ -332,7 +344,7 @@
CLANG_ANALYZER_SECURITY_KEYCHAIN_API = YES;
CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_MODULES = NO;
CLANG_ENABLE_MODULE_DEBUGGING = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_LINK_OBJC_RUNTIME = YES;
Expand Down Expand Up @@ -445,7 +457,7 @@
CLANG_ANALYZER_SECURITY_KEYCHAIN_API = YES;
CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_MODULES = NO;
CLANG_ENABLE_MODULE_DEBUGGING = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_LINK_OBJC_RUNTIME = YES;
Expand Down Expand Up @@ -530,6 +542,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CC = "$(SRCROOT)/Scripts/ccache.sh";
CODE_SIGN_IDENTITY = "";
COMBINE_HIDPI_IMAGES = YES;
DEVELOPMENT_TEAM = 326Y53CJMD;
Expand Down
3 changes: 1 addition & 2 deletions Console/Classes/ASL/ASL.h
Expand Up @@ -27,8 +27,7 @@
* @copyright (c) 2016, Jean-David Gadina - www.xs-labs.com
*/

@import Cocoa;

#import <Cocoa/Cocoa.h>
#import "ASLMessage.h"

@class ASLMessage;
Expand Down
3 changes: 1 addition & 2 deletions Console/Classes/ASL/ASL.m
Expand Up @@ -30,8 +30,7 @@
#import "ASL.h"
#import "ASLMessage.h"
#import "ASLSender.h"

@import asl;
#import <asl.h>

@interface ASL()

Expand Down
4 changes: 2 additions & 2 deletions Console/Classes/ASL/ASLMessage.h
Expand Up @@ -27,8 +27,8 @@
* @copyright (c) 2016, Jean-David Gadina - www.xs-labs.com
*/

@import Cocoa;
@import asl;
#import <Cocoa/Cocoa.h>
#import <asl.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Console/Classes/ASL/ASLSender.h
Expand Up @@ -27,7 +27,7 @@
* @copyright (c) 2016, Jean-David Gadina - www.xs-labs.com
*/

@import Cocoa;
#import <Cocoa/Cocoa.h>

@class ASLMessage;

Expand Down
2 changes: 1 addition & 1 deletion Console/Classes/AboutWindowController.h
Expand Up @@ -27,7 +27,7 @@
* @copyright (c) 2016, Jean-David Gadina - www.xs-labs.com
*/

@import Cocoa;
#import <Cocoa/Cocoa.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Console/Classes/ApplicationDelegate.h
Expand Up @@ -27,7 +27,7 @@
* @copyright (c) 2016, Jean-David Gadina - www.xs-labs.com
*/

@import Cocoa;
#import <Cocoa/Cocoa.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Console/Classes/MainWindowController.h
Expand Up @@ -27,7 +27,7 @@
* @copyright (c) 2016, Jean-David Gadina - www.xs-labs.com
*/

@import Cocoa;
#import <Cocoa/Cocoa.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Console/Classes/Preferences.h
Expand Up @@ -22,7 +22,7 @@
* THE SOFTWARE.
******************************************************************************/

@import Cocoa;
#import <Cocoa/Cocoa.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down
3 changes: 1 addition & 2 deletions Console/Classes/Preferences.m
Expand Up @@ -23,8 +23,7 @@
******************************************************************************/

#import "Preferences.h"

@import ObjectiveC.runtime;
#import <objc/runtime.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Console/Classes/PreferencesWindowController.h
Expand Up @@ -22,7 +22,7 @@
* THE SOFTWARE.
******************************************************************************/

@import Cocoa;
#import <Cocoa/Cocoa.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down
Expand Up @@ -27,7 +27,7 @@
* @copyright (c) 2016, Jean-David Gadina - www.xs-labs.com
*/

@import Cocoa;
#import <Cocoa/Cocoa.h>

@interface ArrayIsEmptyValueTransformer: NSValueTransformer

Expand Down
Expand Up @@ -27,7 +27,7 @@
* @copyright (c) 2016, Jean-David Gadina - www.xs-labs.com
*/

@import Cocoa;
#import <Cocoa/Cocoa.h>

@interface ArrayIsNotEmptyValueTransformer: NSValueTransformer

Expand Down
Expand Up @@ -27,7 +27,7 @@
* @copyright (c) 2016, Jean-David Gadina - www.xs-labs.com
*/

@import Cocoa;
#import <Cocoa/Cocoa.h>

@interface NumberToStringValueTransformer: NSValueTransformer

Expand Down
2 changes: 1 addition & 1 deletion Console/Console-Prefix.pch
Expand Up @@ -31,7 +31,7 @@

#ifdef __OBJC__

@import Cocoa;
#import <Cocoa/Cocoa.h>

#ifndef NS_ASSUME_NONNULL_BEGIN
#define NS_ASSUME_NONNULL_BEGIN
Expand Down
2 changes: 1 addition & 1 deletion Console/main.m
Expand Up @@ -27,7 +27,7 @@
* @copyright (c) 2016, Jean-David Gadina - www.xs-labs.com
*/

@import Cocoa;
#import <Cocoa/Cocoa.h>

int main( int argc, const char * argv[] )
{
Expand Down

0 comments on commit 9d875ad

Please sign in to comment.