first commit of files
2
English.lproj/InfoPlist.strings
Normal file
|
@ -0,0 +1,2 @@
|
|||
/* Localized versions of Info.plist keys */
|
||||
|
4841
English.lproj/MainMenu.xib
Normal file
BIN
Icon.icns
Normal file
55
Timer.h
Normal file
|
@ -0,0 +1,55 @@
|
|||
//
|
||||
// Timer.h
|
||||
//
|
||||
// Created by Jeena on 15.12.09.
|
||||
// Copyright 2009 Jeena Paradies. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
@interface Timer : NSObject {
|
||||
|
||||
IBOutlet NSButton *hour1;
|
||||
IBOutlet NSButton *hour2;
|
||||
IBOutlet NSButton *minute1;
|
||||
IBOutlet NSButton *minute2;
|
||||
IBOutlet NSButton *second1;
|
||||
IBOutlet NSButton *second2;
|
||||
IBOutlet NSButton *start;
|
||||
IBOutlet NSButton *clear;
|
||||
|
||||
NSMutableArray *digits;
|
||||
NSImage *colon;
|
||||
NSImage *no_colon;
|
||||
NSImage *start_button;
|
||||
NSImage *pause_button;
|
||||
NSImage *alarm_button;
|
||||
NSSound *alarmSound;
|
||||
NSSound *clickSound;
|
||||
NSSound *clearSound;
|
||||
|
||||
int remainingSeconds;
|
||||
bool pause;
|
||||
bool isAlarm;
|
||||
bool cleared;
|
||||
bool ongoing;
|
||||
|
||||
NSTimer *repeatingTimer;
|
||||
}
|
||||
|
||||
@property (assign) NSTimer *repeatingTimer;
|
||||
|
||||
- (id)init;
|
||||
- (void)applicationLoaded:(id)sender;
|
||||
- (void)alarm:(id)sender;
|
||||
- (void)setDigitsForTime:(int)time;
|
||||
- (void)clearNow;
|
||||
|
||||
- (IBAction)startOrPause:(NSButton *)sender;
|
||||
- (IBAction)changeDigit:(NSButton *)sender;
|
||||
- (IBAction)clearNow:(id)sender;
|
||||
|
||||
- (IBAction)startRepeatingTimer:(id)sender;
|
||||
- (IBAction)stopRepeatingTimer:(id)sender;
|
||||
|
||||
@end
|
226
Timer.m
Normal file
|
@ -0,0 +1,226 @@
|
|||
//
|
||||
// Timer.m
|
||||
//
|
||||
// Created by Jeena on 15.12.09.
|
||||
// Copyright 2009 Jeena Paradies. All rights reserved.
|
||||
// sound from http://www.flashkit.com/soundfx/Electronic/Alarms/Alarm_cl-Liquid-8852/index.php
|
||||
// click sound from http://free-loops.com/download-free-loop-7744.html
|
||||
//
|
||||
|
||||
#import "Timer.h"
|
||||
|
||||
@implementation Timer
|
||||
|
||||
@synthesize repeatingTimer;
|
||||
|
||||
- (id)init {
|
||||
|
||||
if (self = [super init]) {
|
||||
|
||||
digits = [[NSMutableArray alloc] init];
|
||||
for(int i = 0; i <= 9; i++) {
|
||||
[digits addObject:[NSImage imageNamed:[NSString stringWithFormat:@"digit-%i.png", i]]];
|
||||
}
|
||||
|
||||
colon = [[NSImage imageNamed:@"colon.png"] retain];
|
||||
no_colon = [NSImage imageNamed:@"no_colon.png"];
|
||||
start_button = [NSImage imageNamed:@"start-button.png"];
|
||||
pause_button = [NSImage imageNamed:@"pause-button.png"];
|
||||
alarm_button = [NSImage imageNamed:@"alarm-button.png"];
|
||||
|
||||
NSString *path = [[NSBundle mainBundle] pathForResource:@"alarm" ofType:@"wav"];
|
||||
alarmSound = [[NSSound alloc] initWithContentsOfFile:path byReference:NO];
|
||||
[path release];
|
||||
[alarmSound setLoops:YES];
|
||||
[alarmSound setVolume:1];
|
||||
|
||||
path = [[NSBundle mainBundle] pathForResource:@"click" ofType:@"wav"];
|
||||
clickSound = [[NSSound alloc] initWithContentsOfFile:path byReference:NO];
|
||||
[path release];
|
||||
[clickSound setLoops:NO];
|
||||
[clickSound setVolume:0.2];
|
||||
|
||||
path = [[NSBundle mainBundle] pathForResource:@"clear" ofType:@"wav"];
|
||||
clearSound = [[NSSound alloc] initWithContentsOfFile:path byReference:NO];
|
||||
[path release];
|
||||
[clearSound setLoops:NO];
|
||||
[clearSound setVolume:0.2];
|
||||
|
||||
remainingSeconds = 0;
|
||||
isAlarm = NO;
|
||||
cleared = NO;
|
||||
ongoing = NO;
|
||||
}
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void)applicationLoaded:(id)sender {
|
||||
[(NSButtonCell *)[hour1 cell] setHighlightsBy:NSContentsCellMask];
|
||||
[(NSButtonCell *)[hour2 cell] setHighlightsBy:NSContentsCellMask];
|
||||
[(NSButtonCell *)[minute1 cell] setHighlightsBy:NSContentsCellMask];
|
||||
[(NSButtonCell *)[minute2 cell] setHighlightsBy:NSContentsCellMask];
|
||||
[(NSButtonCell *)[second1 cell] setHighlightsBy:NSContentsCellMask];
|
||||
[(NSButtonCell *)[second2 cell] setHighlightsBy:NSContentsCellMask];
|
||||
[(NSButtonCell *)[start cell] setHighlightsBy:NSContentsCellMask];
|
||||
[(NSButtonCell *)[clear cell] setHighlightsBy:NSContentsCellMask];
|
||||
[self clearNow];
|
||||
}
|
||||
|
||||
|
||||
- (IBAction)startOrPause:(NSButton *)sender {
|
||||
|
||||
[clickSound play];
|
||||
ongoing = YES;
|
||||
|
||||
if (isAlarm) {
|
||||
cleared = YES;
|
||||
start.image = start_button;
|
||||
[self clearNow];
|
||||
|
||||
} else {
|
||||
|
||||
if (start.image == start_button) {
|
||||
start.image = pause_button;
|
||||
[self startRepeatingTimer:self];
|
||||
[clear setTransparent:YES];
|
||||
cleared = NO;
|
||||
|
||||
} else if (start.image == pause_button) {
|
||||
|
||||
start.image = start_button;
|
||||
[self stopRepeatingTimer:self];
|
||||
[clear setTransparent:NO];
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
- (void)clearNow:(id)sender {
|
||||
[self clearNow];
|
||||
[clear setTransparent:YES];
|
||||
[clearSound play];
|
||||
}
|
||||
|
||||
- (void)clearNow {
|
||||
|
||||
remainingSeconds = [[NSUserDefaults standardUserDefaults] integerForKey:@"defaultTime"];
|
||||
|
||||
[self setDigitsForTime:remainingSeconds];
|
||||
ongoing = NO;
|
||||
}
|
||||
|
||||
|
||||
- (void)tick:(NSTimer*)theTimer {
|
||||
|
||||
[self setDigitsForTime:remainingSeconds];
|
||||
|
||||
remainingSeconds -= 1;
|
||||
if (remainingSeconds < 0) {
|
||||
[theTimer invalidate];
|
||||
self.repeatingTimer = nil;
|
||||
start.image = alarm_button;
|
||||
[self alarm:self];
|
||||
cleared = NO;
|
||||
}
|
||||
}
|
||||
|
||||
- (void)setDigitsForTime:(int)time {
|
||||
|
||||
int hd2, hd1, md2, md1, sd2, sd1, hours, minutes, seconds;
|
||||
|
||||
hours = time / 3600;
|
||||
hd1 = hours % 10;
|
||||
hd2 = (hours - hd1) / 10;
|
||||
|
||||
minutes = (time - (hours * 3600)) / 60;
|
||||
md1 = minutes % 10;
|
||||
md2 = (minutes - md1) / 10;
|
||||
|
||||
seconds = time - (hours * 3600) - (minutes * 60);
|
||||
sd1 = seconds % 10;
|
||||
sd2 = (seconds - sd1) / 10;
|
||||
|
||||
hour2.image = [digits objectAtIndex:hd2];
|
||||
hour1.image = [digits objectAtIndex:hd1];
|
||||
minute2.image = [digits objectAtIndex:md2];
|
||||
minute1.image = [digits objectAtIndex:md1];
|
||||
second2.image = [digits objectAtIndex:sd2];
|
||||
second1.image = [digits objectAtIndex:sd1];
|
||||
|
||||
}
|
||||
|
||||
- (void)alarm:(id)sender {
|
||||
|
||||
isAlarm = YES;
|
||||
|
||||
if (cleared == NO) {
|
||||
[alarmSound play];
|
||||
[self performSelector:@selector(alarm:) withObject:self afterDelay:1];
|
||||
} else {
|
||||
[alarmSound stop];
|
||||
isAlarm = NO;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
- (IBAction)startRepeatingTimer:(id)sender {
|
||||
|
||||
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:1
|
||||
target:self selector:@selector(tick:)
|
||||
userInfo:nil repeats:YES];
|
||||
self.repeatingTimer = timer;
|
||||
}
|
||||
|
||||
- (IBAction)stopRepeatingTimer:(id)sender {
|
||||
[repeatingTimer invalidate];
|
||||
self.repeatingTimer = nil;
|
||||
}
|
||||
|
||||
- (IBAction)changeDigit:(NSButton *)sender {
|
||||
|
||||
if (repeatingTimer == nil) {
|
||||
|
||||
[clickSound play];
|
||||
|
||||
int time = remainingSeconds;
|
||||
|
||||
int hd2, hd1, md2, md1, sd2, sd1, hours, minutes, seconds;
|
||||
|
||||
hours = time / 3600;
|
||||
hd1 = hours % 10;
|
||||
hd2 = (hours - hd1) / 10;
|
||||
|
||||
minutes = (time - (hours * 3600)) / 60;
|
||||
md1 = minutes % 10;
|
||||
md2 = (minutes - md1) / 10;
|
||||
|
||||
seconds = time - (hours * 3600) - (minutes * 60);
|
||||
sd1 = seconds % 10;
|
||||
sd2 = (seconds - sd1) / 10;
|
||||
|
||||
if (sender == hour2) {
|
||||
hd2 = (hd2 + 1) % 10;
|
||||
} else if (sender == hour1) {
|
||||
hd1 = (hd1 + 1) % 10;
|
||||
} else if (sender == minute2) {
|
||||
md2 = (md2 + 1) % 6;
|
||||
} else if (sender == minute1) {
|
||||
md1 = (md1 + 1) % 10;
|
||||
} else if (sender == second2) {
|
||||
sd2 = (sd2 + 1) % 6;
|
||||
} else if (sender == second1) {
|
||||
sd1 = (sd1 + 1) % 10;
|
||||
}
|
||||
|
||||
remainingSeconds = hd2 * 3600 * 10 + hd1 * 3600 + md2 * 60 * 10 + md1 * 60 + sd2 * 10 + sd1;
|
||||
|
||||
[[NSUserDefaults standardUserDefaults] setInteger:remainingSeconds forKey:@"defaultTime"];
|
||||
[self clearNow];
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@end
|
32
Timr-Info.plist
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>Icon.icns</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>net.jeena.apps.Timr</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>${PRODUCT_NAME}</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>10.5</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<key>NSMainNibFile</key>
|
||||
<string>MainMenu</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>NSApplication</string>
|
||||
</dict>
|
||||
</plist>
|
16
Timr.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
//
|
||||
// Timr.h
|
||||
// Timr
|
||||
//
|
||||
// Created by Jeena on 15.12.09.
|
||||
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
|
||||
@interface Timr : NSView {
|
||||
|
||||
}
|
||||
|
||||
@end
|
26
Timr.m
Normal file
|
@ -0,0 +1,26 @@
|
|||
//
|
||||
// Timr.m
|
||||
// Timr
|
||||
//
|
||||
// Created by Jeena on 15.12.09.
|
||||
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
||||
//
|
||||
|
||||
#import "Timr.h"
|
||||
|
||||
|
||||
@implementation Timr
|
||||
|
||||
- (id)initWithFrame:(NSRect)frame {
|
||||
self = [super initWithFrame:frame];
|
||||
if (self) {
|
||||
// Initialization code here.
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void)drawRect:(NSRect)dirtyRect {
|
||||
// Drawing code here.
|
||||
}
|
||||
|
||||
@end
|
1400
Timr.xcodeproj/jeena.mode1v3
Normal file
275
Timr.xcodeproj/jeena.pbxuser
Normal file
|
@ -0,0 +1,275 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
089C165DFE840E0CC02AAC07 /* English */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {849, 696}}";
|
||||
sepNavSelRange = "{0, 0}";
|
||||
sepNavVisRange = "{0, 45}";
|
||||
sepNavWindowFrame = "{{38, 70}, {1622, 1082}}";
|
||||
};
|
||||
};
|
||||
1F4C161810D7C99B0002BD95 /* Timer.h */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {849, 855}}";
|
||||
sepNavSelRange = "{168, 0}";
|
||||
sepNavVisRange = "{0, 905}";
|
||||
};
|
||||
};
|
||||
1F4C161910D7C99B0002BD95 /* Timer.m */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {705, 2985}}";
|
||||
sepNavSelRange = "{469, 0}";
|
||||
sepNavVisRange = "{513, 297}";
|
||||
};
|
||||
};
|
||||
1F4C172210D8071D0002BD95 /* PBXBookmark */ = {
|
||||
isa = PBXBookmark;
|
||||
fRef = 1F4C171810D805960002BD95 /* alarm-button.png */;
|
||||
};
|
||||
1F4C192710D854F20002BD95 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 1F4C161910D7C99B0002BD95 /* Timer.m */;
|
||||
name = "Timer.m: 111";
|
||||
rLen = 0;
|
||||
rLoc = 2965;
|
||||
rType = 0;
|
||||
vrLen = 1447;
|
||||
vrLoc = 2471;
|
||||
};
|
||||
1F4C192810D854F20002BD95 /* PBXBookmark */ = {
|
||||
isa = PBXBookmark;
|
||||
fRef = 1F4C192110D853BA0002BD95 /* Icon.icns */;
|
||||
};
|
||||
1F4F442C10D85CDB00B3E297 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 1F4C161810D7C99B0002BD95 /* Timer.h */;
|
||||
name = "Timer.h: 11";
|
||||
rLen = 0;
|
||||
rLoc = 168;
|
||||
rType = 0;
|
||||
vrLen = 905;
|
||||
vrLoc = 0;
|
||||
};
|
||||
1F4F442D10D85CDB00B3E297 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 256AC3D80F4B6AC300CF3369 /* TimrAppDelegate.h */;
|
||||
name = "TimrAppDelegate.h: 7";
|
||||
rLen = 0;
|
||||
rLoc = 129;
|
||||
rType = 0;
|
||||
vrLen = 480;
|
||||
vrLoc = 0;
|
||||
};
|
||||
1F4F442E10D85CDB00B3E297 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 256AC3D90F4B6AC300CF3369 /* TimrAppDelegate.m */;
|
||||
name = "TimrAppDelegate.m: 2";
|
||||
rLen = 0;
|
||||
rLoc = 7;
|
||||
rType = 0;
|
||||
vrLen = 390;
|
||||
vrLoc = 0;
|
||||
};
|
||||
1F4F442F10D85CDB00B3E297 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 29B97316FDCFA39411CA2CEA /* main.m */;
|
||||
name = "main.m: 9";
|
||||
rLen = 0;
|
||||
rLoc = 132;
|
||||
rType = 0;
|
||||
vrLen = 241;
|
||||
vrLoc = 0;
|
||||
};
|
||||
1F4F443010D85CDB00B3E297 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 089C165DFE840E0CC02AAC07 /* English */;
|
||||
name = "InfoPlist.strings: 1";
|
||||
rLen = 0;
|
||||
rLoc = 0;
|
||||
rType = 0;
|
||||
vrLen = 45;
|
||||
vrLoc = 0;
|
||||
};
|
||||
1F4F443110D85CDB00B3E297 /* PBXBookmark */ = {
|
||||
isa = PBXBookmark;
|
||||
fRef = 8D1107310486CEB800E47090 /* Timr-Info.plist */;
|
||||
};
|
||||
1F4F443A10D85E8900B3E297 /* PlistBookmark */ = {
|
||||
isa = PlistBookmark;
|
||||
fRef = 8D1107310486CEB800E47090 /* Timr-Info.plist */;
|
||||
fallbackIsa = PBXBookmark;
|
||||
isK = 0;
|
||||
kPath = (
|
||||
);
|
||||
name = "/Users/jeena/Projects/Timr/Timr-Info.plist";
|
||||
rLen = 0;
|
||||
rLoc = 9223372036854775807;
|
||||
};
|
||||
1FB3489F10D7B805003E34A4 /* Timr */ = {
|
||||
isa = PBXExecutable;
|
||||
activeArgIndices = (
|
||||
);
|
||||
argumentStrings = (
|
||||
);
|
||||
autoAttachOnCrash = 1;
|
||||
breakpointsEnabled = 0;
|
||||
configStateDict = {
|
||||
};
|
||||
customDataFormattersEnabled = 1;
|
||||
dataTipCustomDataFormattersEnabled = 1;
|
||||
dataTipShowTypeColumn = 1;
|
||||
dataTipSortType = 0;
|
||||
debuggerPlugin = GDBDebugging;
|
||||
disassemblyDisplayState = 0;
|
||||
dylibVariantSuffix = "";
|
||||
enableDebugStr = 1;
|
||||
environmentEntries = (
|
||||
);
|
||||
executableSystemSymbolLevel = 0;
|
||||
executableUserSymbolLevel = 0;
|
||||
libgmallocEnabled = 0;
|
||||
name = Timr;
|
||||
savedGlobals = {
|
||||
};
|
||||
showTypeColumn = 0;
|
||||
sourceDirectories = (
|
||||
);
|
||||
variableFormatDictionary = {
|
||||
};
|
||||
};
|
||||
1FB348B110D7B81C003E34A4 /* Source Control */ = {
|
||||
isa = PBXSourceControlManager;
|
||||
fallbackIsa = XCSourceControlManager;
|
||||
isSCMEnabled = 0;
|
||||
scmConfiguration = {
|
||||
repositoryNamesForRoots = {
|
||||
"" = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
1FB348B210D7B81C003E34A4 /* Code sense */ = {
|
||||
isa = PBXCodeSenseManager;
|
||||
indexTemplatePath = "";
|
||||
};
|
||||
256AC3D80F4B6AC300CF3369 /* TimrAppDelegate.h */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {439, 405}}";
|
||||
sepNavSelRange = "{350, 0}";
|
||||
sepNavVisRange = "{71, 297}";
|
||||
};
|
||||
};
|
||||
256AC3D90F4B6AC300CF3369 /* TimrAppDelegate.m */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {849, 696}}";
|
||||
sepNavSelRange = "{7, 0}";
|
||||
sepNavVisRange = "{0, 390}";
|
||||
};
|
||||
};
|
||||
29B97313FDCFA39411CA2CEA /* Project object */ = {
|
||||
activeBuildConfigurationName = Release;
|
||||
activeExecutable = 1FB3489F10D7B805003E34A4 /* Timr */;
|
||||
activeTarget = 8D1107260486CEB800E47090 /* Timr */;
|
||||
addToTargets = (
|
||||
8D1107260486CEB800E47090 /* Timr */,
|
||||
);
|
||||
codeSenseManager = 1FB348B210D7B81C003E34A4 /* Code sense */;
|
||||
executables = (
|
||||
1FB3489F10D7B805003E34A4 /* Timr */,
|
||||
);
|
||||
perUserDictionary = {
|
||||
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
|
||||
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
|
||||
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
|
||||
PBXFileTableDataSourceColumnWidthsKey = (
|
||||
20,
|
||||
671,
|
||||
20,
|
||||
48,
|
||||
43,
|
||||
43,
|
||||
20,
|
||||
);
|
||||
PBXFileTableDataSourceColumnsKey = (
|
||||
PBXFileDataSource_FiletypeID,
|
||||
PBXFileDataSource_Filename_ColumnID,
|
||||
PBXFileDataSource_Built_ColumnID,
|
||||
PBXFileDataSource_ObjectSize_ColumnID,
|
||||
PBXFileDataSource_Errors_ColumnID,
|
||||
PBXFileDataSource_Warnings_ColumnID,
|
||||
PBXFileDataSource_Target_ColumnID,
|
||||
);
|
||||
};
|
||||
PBXConfiguration.PBXFileTableDataSource3.PBXFindDataSource = {
|
||||
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
|
||||
PBXFileTableDataSourceColumnSortingKey = PBXFindDataSource_LocationID;
|
||||
PBXFileTableDataSourceColumnWidthsKey = (
|
||||
200,
|
||||
685,
|
||||
);
|
||||
PBXFileTableDataSourceColumnsKey = (
|
||||
PBXFindDataSource_MessageID,
|
||||
PBXFindDataSource_LocationID,
|
||||
);
|
||||
};
|
||||
PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = {
|
||||
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
|
||||
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
|
||||
PBXFileTableDataSourceColumnWidthsKey = (
|
||||
20,
|
||||
631,
|
||||
60,
|
||||
20,
|
||||
48,
|
||||
43,
|
||||
43,
|
||||
);
|
||||
PBXFileTableDataSourceColumnsKey = (
|
||||
PBXFileDataSource_FiletypeID,
|
||||
PBXFileDataSource_Filename_ColumnID,
|
||||
PBXTargetDataSource_PrimaryAttribute,
|
||||
PBXFileDataSource_Built_ColumnID,
|
||||
PBXFileDataSource_ObjectSize_ColumnID,
|
||||
PBXFileDataSource_Errors_ColumnID,
|
||||
PBXFileDataSource_Warnings_ColumnID,
|
||||
);
|
||||
};
|
||||
PBXPerProjectTemplateStateSaveDate = 282613058;
|
||||
PBXWorkspaceStateSaveDate = 282613058;
|
||||
};
|
||||
perUserProjectItems = {
|
||||
1F4C172210D8071D0002BD95 /* PBXBookmark */ = 1F4C172210D8071D0002BD95 /* PBXBookmark */;
|
||||
1F4C192710D854F20002BD95 /* PBXTextBookmark */ = 1F4C192710D854F20002BD95 /* PBXTextBookmark */;
|
||||
1F4C192810D854F20002BD95 /* PBXBookmark */ = 1F4C192810D854F20002BD95 /* PBXBookmark */;
|
||||
1F4F442C10D85CDB00B3E297 /* PBXTextBookmark */ = 1F4F442C10D85CDB00B3E297 /* PBXTextBookmark */;
|
||||
1F4F442D10D85CDB00B3E297 /* PBXTextBookmark */ = 1F4F442D10D85CDB00B3E297 /* PBXTextBookmark */;
|
||||
1F4F442E10D85CDB00B3E297 /* PBXTextBookmark */ = 1F4F442E10D85CDB00B3E297 /* PBXTextBookmark */;
|
||||
1F4F442F10D85CDB00B3E297 /* PBXTextBookmark */ = 1F4F442F10D85CDB00B3E297 /* PBXTextBookmark */;
|
||||
1F4F443010D85CDB00B3E297 /* PBXTextBookmark */ = 1F4F443010D85CDB00B3E297 /* PBXTextBookmark */;
|
||||
1F4F443110D85CDB00B3E297 /* PBXBookmark */ = 1F4F443110D85CDB00B3E297 /* PBXBookmark */;
|
||||
1F4F443A10D85E8900B3E297 /* PlistBookmark */ = 1F4F443A10D85E8900B3E297 /* PlistBookmark */;
|
||||
};
|
||||
sourceControlManager = 1FB348B110D7B81C003E34A4 /* Source Control */;
|
||||
userBuildSettings = {
|
||||
};
|
||||
};
|
||||
29B97316FDCFA39411CA2CEA /* main.m */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {849, 696}}";
|
||||
sepNavSelRange = "{132, 0}";
|
||||
sepNavVisRange = "{0, 241}";
|
||||
};
|
||||
};
|
||||
8D1107260486CEB800E47090 /* Timr */ = {
|
||||
activeExec = 0;
|
||||
executables = (
|
||||
1FB3489F10D7B805003E34A4 /* Timr */,
|
||||
);
|
||||
};
|
||||
8D1107310486CEB800E47090 /* Timr-Info.plist */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {849, 696}}";
|
||||
sepNavSelRange = "{767, 24}";
|
||||
sepNavVisRange = "{0, 981}";
|
||||
};
|
||||
};
|
||||
}
|
388
Timr.xcodeproj/project.pbxproj
Normal file
|
@ -0,0 +1,388 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
1DDD58160DA1D0A300B32029 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1DDD58140DA1D0A300B32029 /* MainMenu.xib */; };
|
||||
1F4C161A10D7C99B0002BD95 /* Timer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F4C161910D7C99B0002BD95 /* Timer.m */; };
|
||||
1F4C163110D7CE3B0002BD95 /* colon.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C162610D7CE3B0002BD95 /* colon.png */; };
|
||||
1F4C163210D7CE3B0002BD95 /* digit-0.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C162710D7CE3B0002BD95 /* digit-0.png */; };
|
||||
1F4C163310D7CE3B0002BD95 /* digit-1.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C162810D7CE3B0002BD95 /* digit-1.png */; };
|
||||
1F4C163410D7CE3B0002BD95 /* digit-2.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C162910D7CE3B0002BD95 /* digit-2.png */; };
|
||||
1F4C163510D7CE3B0002BD95 /* digit-3.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C162A10D7CE3B0002BD95 /* digit-3.png */; };
|
||||
1F4C163610D7CE3B0002BD95 /* digit-4.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C162B10D7CE3B0002BD95 /* digit-4.png */; };
|
||||
1F4C163710D7CE3B0002BD95 /* digit-5.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C162C10D7CE3B0002BD95 /* digit-5.png */; };
|
||||
1F4C163810D7CE3B0002BD95 /* digit-6.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C162D10D7CE3B0002BD95 /* digit-6.png */; };
|
||||
1F4C163910D7CE3B0002BD95 /* digit-7.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C162E10D7CE3B0002BD95 /* digit-7.png */; };
|
||||
1F4C163A10D7CE3B0002BD95 /* digit-8.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C162F10D7CE3B0002BD95 /* digit-8.png */; };
|
||||
1F4C163B10D7CE3B0002BD95 /* no_colon.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C163010D7CE3B0002BD95 /* no_colon.png */; };
|
||||
1F4C165210D7DDA60002BD95 /* pause-button.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C165010D7DDA60002BD95 /* pause-button.png */; };
|
||||
1F4C165310D7DDA60002BD95 /* start-button.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C165110D7DDA60002BD95 /* start-button.png */; };
|
||||
1F4C16BE10D7F0C30002BD95 /* digit-9.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C16BD10D7F0C30002BD95 /* digit-9.png */; };
|
||||
1F4C171910D805960002BD95 /* alarm-button.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C171810D805960002BD95 /* alarm-button.png */; };
|
||||
1F4C176610D810D50002BD95 /* alarm.wav in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C176510D810D50002BD95 /* alarm.wav */; };
|
||||
1F4C18B010D847310002BD95 /* clear-button.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C18AF10D847310002BD95 /* clear-button.png */; };
|
||||
1F4C18C510D84AE20002BD95 /* click.wav in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C18C410D84AE20002BD95 /* click.wav */; };
|
||||
1F4C190E10D851D70002BD95 /* clear.wav in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C190D10D851D70002BD95 /* clear.wav */; };
|
||||
1F4C192210D853BA0002BD95 /* Icon.icns in Resources */ = {isa = PBXBuildFile; fileRef = 1F4C192110D853BA0002BD95 /* Icon.icns */; };
|
||||
256AC3DA0F4B6AC300CF3369 /* TimrAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 256AC3D90F4B6AC300CF3369 /* TimrAppDelegate.m */; };
|
||||
8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; };
|
||||
8D11072D0486CEB800E47090 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; };
|
||||
8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
||||
1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
|
||||
13E42FB307B3F0F600E4EEF1 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = "<absolute>"; };
|
||||
1DDD58150DA1D0A300B32029 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = "<group>"; };
|
||||
1F4C161810D7C99B0002BD95 /* Timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Timer.h; sourceTree = "<group>"; };
|
||||
1F4C161910D7C99B0002BD95 /* Timer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Timer.m; sourceTree = "<group>"; };
|
||||
1F4C162610D7CE3B0002BD95 /* colon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = colon.png; sourceTree = "<group>"; };
|
||||
1F4C162710D7CE3B0002BD95 /* digit-0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "digit-0.png"; sourceTree = "<group>"; };
|
||||
1F4C162810D7CE3B0002BD95 /* digit-1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "digit-1.png"; sourceTree = "<group>"; };
|
||||
1F4C162910D7CE3B0002BD95 /* digit-2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "digit-2.png"; sourceTree = "<group>"; };
|
||||
1F4C162A10D7CE3B0002BD95 /* digit-3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "digit-3.png"; sourceTree = "<group>"; };
|
||||
1F4C162B10D7CE3B0002BD95 /* digit-4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "digit-4.png"; sourceTree = "<group>"; };
|
||||
1F4C162C10D7CE3B0002BD95 /* digit-5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "digit-5.png"; sourceTree = "<group>"; };
|
||||
1F4C162D10D7CE3B0002BD95 /* digit-6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "digit-6.png"; sourceTree = "<group>"; };
|
||||
1F4C162E10D7CE3B0002BD95 /* digit-7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "digit-7.png"; sourceTree = "<group>"; };
|
||||
1F4C162F10D7CE3B0002BD95 /* digit-8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "digit-8.png"; sourceTree = "<group>"; };
|
||||
1F4C163010D7CE3B0002BD95 /* no_colon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = no_colon.png; sourceTree = "<group>"; };
|
||||
1F4C165010D7DDA60002BD95 /* pause-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pause-button.png"; sourceTree = "<group>"; };
|
||||
1F4C165110D7DDA60002BD95 /* start-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "start-button.png"; sourceTree = "<group>"; };
|
||||
1F4C16BD10D7F0C30002BD95 /* digit-9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "digit-9.png"; sourceTree = "<group>"; };
|
||||
1F4C171810D805960002BD95 /* alarm-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "alarm-button.png"; sourceTree = "<group>"; };
|
||||
1F4C176510D810D50002BD95 /* alarm.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = alarm.wav; sourceTree = "<group>"; };
|
||||
1F4C18AF10D847310002BD95 /* clear-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "clear-button.png"; sourceTree = "<group>"; };
|
||||
1F4C18C410D84AE20002BD95 /* click.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = click.wav; sourceTree = "<group>"; };
|
||||
1F4C190D10D851D70002BD95 /* clear.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = clear.wav; sourceTree = "<group>"; };
|
||||
1F4C192110D853BA0002BD95 /* Icon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Icon.icns; sourceTree = "<group>"; };
|
||||
256AC3D80F4B6AC300CF3369 /* TimrAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimrAppDelegate.h; sourceTree = "<group>"; };
|
||||
256AC3D90F4B6AC300CF3369 /* TimrAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimrAppDelegate.m; sourceTree = "<group>"; };
|
||||
256AC3F00F4B6AF500CF3369 /* Timr_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Timr_Prefix.pch; sourceTree = "<group>"; };
|
||||
29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
||||
29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
|
||||
29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
|
||||
8D1107310486CEB800E47090 /* Timr-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Timr-Info.plist"; sourceTree = "<group>"; };
|
||||
8D1107320486CEB800E47090 /* Timr.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Timr.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
8D11072E0486CEB800E47090 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
080E96DDFE201D6D7F000001 /* Classes */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1F4C161810D7C99B0002BD95 /* Timer.h */,
|
||||
1F4C161910D7C99B0002BD95 /* Timer.m */,
|
||||
256AC3D80F4B6AC300CF3369 /* TimrAppDelegate.h */,
|
||||
256AC3D90F4B6AC300CF3369 /* TimrAppDelegate.m */,
|
||||
);
|
||||
name = Classes;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */,
|
||||
);
|
||||
name = "Linked Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
29B97324FDCFA39411CA2CEA /* AppKit.framework */,
|
||||
13E42FB307B3F0F600E4EEF1 /* CoreData.framework */,
|
||||
29B97325FDCFA39411CA2CEA /* Foundation.framework */,
|
||||
);
|
||||
name = "Other Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
19C28FACFE9D520D11CA2CBB /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8D1107320486CEB800E47090 /* Timr.app */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1F4C160610D7BF030002BD95 /* Images */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1F4C18AF10D847310002BD95 /* clear-button.png */,
|
||||
1F4C171810D805960002BD95 /* alarm-button.png */,
|
||||
1F4C165010D7DDA60002BD95 /* pause-button.png */,
|
||||
1F4C165110D7DDA60002BD95 /* start-button.png */,
|
||||
1F4C162610D7CE3B0002BD95 /* colon.png */,
|
||||
1F4C162710D7CE3B0002BD95 /* digit-0.png */,
|
||||
1F4C162810D7CE3B0002BD95 /* digit-1.png */,
|
||||
1F4C162910D7CE3B0002BD95 /* digit-2.png */,
|
||||
1F4C162A10D7CE3B0002BD95 /* digit-3.png */,
|
||||
1F4C162B10D7CE3B0002BD95 /* digit-4.png */,
|
||||
1F4C162C10D7CE3B0002BD95 /* digit-5.png */,
|
||||
1F4C162D10D7CE3B0002BD95 /* digit-6.png */,
|
||||
1F4C162E10D7CE3B0002BD95 /* digit-7.png */,
|
||||
1F4C162F10D7CE3B0002BD95 /* digit-8.png */,
|
||||
1F4C16BD10D7F0C30002BD95 /* digit-9.png */,
|
||||
1F4C163010D7CE3B0002BD95 /* no_colon.png */,
|
||||
);
|
||||
name = Images;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1F4C18C310D84ABF0002BD95 /* sounds */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1F4C190D10D851D70002BD95 /* clear.wav */,
|
||||
1F4C18C410D84AE20002BD95 /* click.wav */,
|
||||
1F4C176510D810D50002BD95 /* alarm.wav */,
|
||||
);
|
||||
name = sounds;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
29B97314FDCFA39411CA2CEA /* Timr */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
080E96DDFE201D6D7F000001 /* Classes */,
|
||||
29B97315FDCFA39411CA2CEA /* Other Sources */,
|
||||
29B97317FDCFA39411CA2CEA /* Resources */,
|
||||
29B97323FDCFA39411CA2CEA /* Frameworks */,
|
||||
19C28FACFE9D520D11CA2CBB /* Products */,
|
||||
);
|
||||
name = Timr;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
29B97315FDCFA39411CA2CEA /* Other Sources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
256AC3F00F4B6AF500CF3369 /* Timr_Prefix.pch */,
|
||||
29B97316FDCFA39411CA2CEA /* main.m */,
|
||||
);
|
||||
name = "Other Sources";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
29B97317FDCFA39411CA2CEA /* Resources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1F4C192110D853BA0002BD95 /* Icon.icns */,
|
||||
1F4C18C310D84ABF0002BD95 /* sounds */,
|
||||
1F4C160610D7BF030002BD95 /* Images */,
|
||||
8D1107310486CEB800E47090 /* Timr-Info.plist */,
|
||||
089C165CFE840E0CC02AAC07 /* InfoPlist.strings */,
|
||||
1DDD58140DA1D0A300B32029 /* MainMenu.xib */,
|
||||
);
|
||||
name = Resources;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
29B97323FDCFA39411CA2CEA /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */,
|
||||
1058C7A2FEA54F0111CA2CBB /* Other Frameworks */,
|
||||
);
|
||||
name = Frameworks;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
8D1107260486CEB800E47090 /* Timr */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "Timr" */;
|
||||
buildPhases = (
|
||||
8D1107290486CEB800E47090 /* Resources */,
|
||||
8D11072C0486CEB800E47090 /* Sources */,
|
||||
8D11072E0486CEB800E47090 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = Timr;
|
||||
productInstallPath = "$(HOME)/Applications";
|
||||
productName = Timr;
|
||||
productReference = 8D1107320486CEB800E47090 /* Timr.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
29B97313FDCFA39411CA2CEA /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Timr" */;
|
||||
compatibilityVersion = "Xcode 3.1";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 29B97314FDCFA39411CA2CEA /* Timr */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
8D1107260486CEB800E47090 /* Timr */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
8D1107290486CEB800E47090 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */,
|
||||
1DDD58160DA1D0A300B32029 /* MainMenu.xib in Resources */,
|
||||
1F4C163110D7CE3B0002BD95 /* colon.png in Resources */,
|
||||
1F4C163210D7CE3B0002BD95 /* digit-0.png in Resources */,
|
||||
1F4C163310D7CE3B0002BD95 /* digit-1.png in Resources */,
|
||||
1F4C163410D7CE3B0002BD95 /* digit-2.png in Resources */,
|
||||
1F4C163510D7CE3B0002BD95 /* digit-3.png in Resources */,
|
||||
1F4C163610D7CE3B0002BD95 /* digit-4.png in Resources */,
|
||||
1F4C163710D7CE3B0002BD95 /* digit-5.png in Resources */,
|
||||
1F4C163810D7CE3B0002BD95 /* digit-6.png in Resources */,
|
||||
1F4C163910D7CE3B0002BD95 /* digit-7.png in Resources */,
|
||||
1F4C163A10D7CE3B0002BD95 /* digit-8.png in Resources */,
|
||||
1F4C163B10D7CE3B0002BD95 /* no_colon.png in Resources */,
|
||||
1F4C165210D7DDA60002BD95 /* pause-button.png in Resources */,
|
||||
1F4C165310D7DDA60002BD95 /* start-button.png in Resources */,
|
||||
1F4C16BE10D7F0C30002BD95 /* digit-9.png in Resources */,
|
||||
1F4C171910D805960002BD95 /* alarm-button.png in Resources */,
|
||||
1F4C176610D810D50002BD95 /* alarm.wav in Resources */,
|
||||
1F4C18B010D847310002BD95 /* clear-button.png in Resources */,
|
||||
1F4C18C510D84AE20002BD95 /* click.wav in Resources */,
|
||||
1F4C190E10D851D70002BD95 /* clear.wav in Resources */,
|
||||
1F4C192210D853BA0002BD95 /* Icon.icns in Resources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
8D11072C0486CEB800E47090 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
8D11072D0486CEB800E47090 /* main.m in Sources */,
|
||||
256AC3DA0F4B6AC300CF3369 /* TimrAppDelegate.m in Sources */,
|
||||
1F4C161A10D7C99B0002BD95 /* Timer.m in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = {
|
||||
isa = PBXVariantGroup;
|
||||
children = (
|
||||
089C165DFE840E0CC02AAC07 /* English */,
|
||||
);
|
||||
name = InfoPlist.strings;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1DDD58140DA1D0A300B32029 /* MainMenu.xib */ = {
|
||||
isa = PBXVariantGroup;
|
||||
children = (
|
||||
1DDD58150DA1D0A300B32029 /* English */,
|
||||
);
|
||||
name = MainMenu.xib;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
C01FCF4B08A954540054247B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = Timr_Prefix.pch;
|
||||
INFOPLIST_FILE = "Timr-Info.plist";
|
||||
INSTALL_PATH = "$(HOME)/Applications";
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.5;
|
||||
PRODUCT_NAME = Timr;
|
||||
SDKROOT = macosx10.5;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
C01FCF4C08A954540054247B /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = Timr_Prefix.pch;
|
||||
INFOPLIST_FILE = "Timr-Info.plist";
|
||||
INSTALL_PATH = "$(HOME)/Applications";
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.5;
|
||||
PRODUCT_NAME = Timr;
|
||||
SDKROOT = macosx10.5;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
C01FCF4F08A954540054247B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
PREBINDING = NO;
|
||||
SDKROOT = macosx10.6;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
C01FCF5008A954540054247B /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
PREBINDING = NO;
|
||||
SDKROOT = macosx10.6;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "Timr" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
C01FCF4B08A954540054247B /* Debug */,
|
||||
C01FCF4C08A954540054247B /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Timr" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
C01FCF4F08A954540054247B /* Debug */,
|
||||
C01FCF5008A954540054247B /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
|
||||
}
|
25
TimrAppDelegate.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
//
|
||||
// TimrAppDelegate.h
|
||||
// Timr
|
||||
//
|
||||
// Created by Jeena on 15.12.09.
|
||||
// Copyright 2009 Jeena Paradies. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#import "Timer.h"
|
||||
|
||||
#if (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_5)
|
||||
@interface TimrAppDelegate : NSObject
|
||||
#else
|
||||
@interface TimrAppDelegate : NSObject <NSApplicationDelegate>
|
||||
#endif
|
||||
{
|
||||
NSWindow *window;
|
||||
Timer *timer;
|
||||
}
|
||||
|
||||
@property (assign) IBOutlet NSWindow *window;
|
||||
@property (assign) IBOutlet Timer *timer;
|
||||
|
||||
@end
|
22
TimrAppDelegate.m
Normal file
|
@ -0,0 +1,22 @@
|
|||
//
|
||||
// TimrAppDelegate.m
|
||||
// Timr
|
||||
//
|
||||
// Created by Jeena on 15.12.09.
|
||||
// Copyright 2009 Jeena Paradies. All rights reserved.
|
||||
//
|
||||
|
||||
#import "TimrAppDelegate.h"
|
||||
|
||||
@implementation TimrAppDelegate
|
||||
|
||||
@synthesize window, timer;
|
||||
|
||||
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
|
||||
// Insert code here to initialize your application
|
||||
|
||||
[timer applicationLoaded:self];
|
||||
}
|
||||
|
||||
|
||||
@end
|
7
Timr_Prefix.pch
Normal file
|
@ -0,0 +1,7 @@
|
|||
//
|
||||
// Prefix header for all source files of the 'Timr' target in the 'Timr' project
|
||||
//
|
||||
|
||||
#ifdef __OBJC__
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#endif
|
BIN
alarm-button.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
alarm.wav
Normal file
30
build/Debug/Timr.app/Contents/Info.plist
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>Timr</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>net.jeena.apps.Timr</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Timr</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>10.6</string>
|
||||
<key>NSMainNibFile</key>
|
||||
<string>MainMenu</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>NSApplication</string>
|
||||
</dict>
|
||||
</plist>
|
BIN
build/Debug/Timr.app/Contents/MacOS/Timr
Executable file
1
build/Debug/Timr.app/Contents/PkgInfo
Normal file
|
@ -0,0 +1 @@
|
|||
APPL????
|
BIN
build/Debug/Timr.app/Contents/Resources/English.lproj/MainMenu.nib
generated
Normal file
BIN
build/Debug/Timr.app/Contents/Resources/alarm-button.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
build/Debug/Timr.app/Contents/Resources/alarm-sound.wav
Normal file
BIN
build/Debug/Timr.app/Contents/Resources/alarm.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
build/Debug/Timr.app/Contents/Resources/clear-button.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
build/Debug/Timr.app/Contents/Resources/click.wav
Normal file
BIN
build/Debug/Timr.app/Contents/Resources/colon.png
Normal file
After Width: | Height: | Size: 189 B |
BIN
build/Debug/Timr.app/Contents/Resources/digit-0.png
Normal file
After Width: | Height: | Size: 510 B |
BIN
build/Debug/Timr.app/Contents/Resources/digit-1.png
Normal file
After Width: | Height: | Size: 374 B |
BIN
build/Debug/Timr.app/Contents/Resources/digit-2.png
Normal file
After Width: | Height: | Size: 472 B |
BIN
build/Debug/Timr.app/Contents/Resources/digit-3.png
Normal file
After Width: | Height: | Size: 488 B |
BIN
build/Debug/Timr.app/Contents/Resources/digit-4.png
Normal file
After Width: | Height: | Size: 432 B |
BIN
build/Debug/Timr.app/Contents/Resources/digit-5.png
Normal file
After Width: | Height: | Size: 477 B |
BIN
build/Debug/Timr.app/Contents/Resources/digit-6.png
Normal file
After Width: | Height: | Size: 508 B |
BIN
build/Debug/Timr.app/Contents/Resources/digit-7.png
Normal file
After Width: | Height: | Size: 430 B |
BIN
build/Debug/Timr.app/Contents/Resources/digit-8.png
Normal file
After Width: | Height: | Size: 542 B |
BIN
build/Debug/Timr.app/Contents/Resources/digit-9.png
Normal file
After Width: | Height: | Size: 512 B |
BIN
build/Debug/Timr.app/Contents/Resources/no_colon.png
Normal file
After Width: | Height: | Size: 134 B |
BIN
build/Debug/Timr.app/Contents/Resources/pause-button.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
build/Debug/Timr.app/Contents/Resources/start-button.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
build/Release/.DS_Store
vendored
Normal file
20
build/Release/Timr.app.dSYM/Contents/Info.plist
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.xcode.dsym.Timr.app</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>dSYM</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
</dict>
|
||||
</plist>
|
BIN
build/Release/Timr.app.dSYM/Contents/Resources/DWARF/Timr
Normal file
32
build/Release/Timr.app/Contents/Info.plist
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>Timr</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>Icon.icns</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>net.jeena.apps.Timr</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Timr</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>10.5</string>
|
||||
<key>NSMainNibFile</key>
|
||||
<string>MainMenu</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>NSApplication</string>
|
||||
</dict>
|
||||
</plist>
|
BIN
build/Release/Timr.app/Contents/MacOS/Timr
Executable file
1
build/Release/Timr.app/Contents/PkgInfo
Normal file
|
@ -0,0 +1 @@
|
|||
APPL????
|
BIN
build/Release/Timr.app/Contents/Resources/English.lproj/MainMenu.nib
generated
Normal file
BIN
build/Release/Timr.app/Contents/Resources/Icon.icns
Normal file
BIN
build/Release/Timr.app/Contents/Resources/alarm-button.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
build/Release/Timr.app/Contents/Resources/alarm-sound.wav
Normal file
BIN
build/Release/Timr.app/Contents/Resources/alarm.wav
Normal file
BIN
build/Release/Timr.app/Contents/Resources/clear-button.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
build/Release/Timr.app/Contents/Resources/clear.wav
Normal file
BIN
build/Release/Timr.app/Contents/Resources/click.wav
Normal file
BIN
build/Release/Timr.app/Contents/Resources/colon.png
Normal file
After Width: | Height: | Size: 189 B |
BIN
build/Release/Timr.app/Contents/Resources/digit-0.png
Normal file
After Width: | Height: | Size: 510 B |
BIN
build/Release/Timr.app/Contents/Resources/digit-1.png
Normal file
After Width: | Height: | Size: 374 B |
BIN
build/Release/Timr.app/Contents/Resources/digit-2.png
Normal file
After Width: | Height: | Size: 472 B |
BIN
build/Release/Timr.app/Contents/Resources/digit-3.png
Normal file
After Width: | Height: | Size: 488 B |
BIN
build/Release/Timr.app/Contents/Resources/digit-4.png
Normal file
After Width: | Height: | Size: 432 B |
BIN
build/Release/Timr.app/Contents/Resources/digit-5.png
Normal file
After Width: | Height: | Size: 477 B |
BIN
build/Release/Timr.app/Contents/Resources/digit-6.png
Normal file
After Width: | Height: | Size: 508 B |
BIN
build/Release/Timr.app/Contents/Resources/digit-7.png
Normal file
After Width: | Height: | Size: 430 B |
BIN
build/Release/Timr.app/Contents/Resources/digit-8.png
Normal file
After Width: | Height: | Size: 542 B |
BIN
build/Release/Timr.app/Contents/Resources/digit-9.png
Normal file
After Width: | Height: | Size: 512 B |
BIN
build/Release/Timr.app/Contents/Resources/no_colon.png
Normal file
After Width: | Height: | Size: 134 B |
BIN
build/Release/Timr.app/Contents/Resources/pause-button.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
build/Release/Timr.app/Contents/Resources/start-button.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o
Normal file
|
@ -0,0 +1,3 @@
|
|||
/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o
|
||||
/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o
|
||||
/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o
|
BIN
build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o
Normal file
BIN
build/Timr.build/Debug/Timr.build/Timr-all-target-headers.hmap
Normal file
BIN
build/Timr.build/Debug/Timr.build/Timr-generated-files.hmap
Normal file
BIN
build/Timr.build/Debug/Timr.build/Timr-own-target-headers.hmap
Normal file
BIN
build/Timr.build/Debug/Timr.build/Timr-project-headers.hmap
Normal file
33
build/Timr.build/Debug/Timr.build/Timr.dep
Normal file
|
@ -0,0 +1,33 @@
|
|||
aa03bf2b812164868311ceb7a5649949 b478d6438486392513490a56ecbcde9c ffffffffffffffffffffffffffffffff 102 /Users/jeena/Projects/Timr/build/Debug/Timr.app
|
||||
f9bf0729a5fab12db87a95a2bc81f181 b00d2048a62daccb9bd0be29bb4b9e91 ffffffffffffffffffffffffffffffff 23880 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/MacOS/Timr
|
||||
07fa10c73320fb84caa6292d195ec713 6ba5c7281bdb1d93336e734d95fc80fd ffffffffffffffffffffffffffffffff 40408 /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o
|
||||
07fa10c738cc43d6caa6292d195ed288 cb2920a96f792719f06864c74de72f7f ffffffffffffffffffffffffffffffff 23876 /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o
|
||||
07fa10c778077dedcaa6292d195ed758 5ec9f06fa2179386b1daab057dc439ce ffffffffffffffffffffffffffffffff 4976 /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o
|
||||
000000000be32aed000000000000016e 07fa10c778077dedcaa6292d195ed727 ffffffffffffffffffffffffffffffff 54212368 /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch.gch
|
||||
00000000000000000000000000000000 44810a72490c114a0b6758ff516937b1 ffffffffffffffffffffffffffffffff 7258 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/click.wav
|
||||
00000000000000000000000000000000 26a4e5c28a037188f2aa0c626902a70b ffffffffffffffffffffffffffffffff 2146 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/clear-button.png
|
||||
00000000000000000000000000000000 b3fc98558a6822a174a8667da8f30f66 ffffffffffffffffffffffffffffffff 2978644 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/alarm-sound.wav
|
||||
00000000000000000000000000000000 170efb78731b2da56cfc80f083a22a18 ffffffffffffffffffffffffffffffff 12007 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/alarm-button.png
|
||||
00000000000000000000000000000000 c6966d484d240fd05e1b323ede5bc93e ffffffffffffffffffffffffffffffff 512 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-9.png
|
||||
00000000000000000000000000000000 ff9e34c5ecaac90b2ba67e72dd879789 ffffffffffffffffffffffffffffffff 12170 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/start-button.png
|
||||
00000000000000000000000000000000 bf54731aee4762af36ef27fb66adc782 ffffffffffffffffffffffffffffffff 12177 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/pause-button.png
|
||||
00000000000000000000000000000000 6bffc956fc6654a05b345f38f9a83e54 ffffffffffffffffffffffffffffffff 134 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/no_colon.png
|
||||
00000000000000000000000000000000 bd6fad812e7c3c1cb4d39498456c07e9 ffffffffffffffffffffffffffffffff 542 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-8.png
|
||||
00000000000000000000000000000000 feb7744e7cb250ff82d8142263e38baa ffffffffffffffffffffffffffffffff 430 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-7.png
|
||||
00000000000000000000000000000000 50460ba3cf5dd5c738192ccbccb8ee0b ffffffffffffffffffffffffffffffff 508 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-6.png
|
||||
00000000000000000000000000000000 4bdb66adacb0f6e7a3dd6df8f18bbbb4 ffffffffffffffffffffffffffffffff 477 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-5.png
|
||||
00000000000000000000000000000000 d9fcb365fbc9f3e7d933a278589ef553 ffffffffffffffffffffffffffffffff 432 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-4.png
|
||||
00000000000000000000000000000000 bf7250b0d98a9cbaf9202f1b800a734d ffffffffffffffffffffffffffffffff 488 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-3.png
|
||||
00000000000000000000000000000000 e134da09ae49a8edd44fede54e97400f ffffffffffffffffffffffffffffffff 472 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-2.png
|
||||
00000000000000000000000000000000 b19c199d8da77fc42a4e2fd8b4f89859 ffffffffffffffffffffffffffffffff 374 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-1.png
|
||||
00000000000000000000000000000000 62c64f90092d8a15da61688b1d3efa3f ffffffffffffffffffffffffffffffff 510 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-0.png
|
||||
00000000000000000000000000000000 f8744df570ccac9c9b720b4d11292416 ffffffffffffffffffffffffffffffff 189 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/colon.png
|
||||
000000004b28115900000000000331d4 f6ddaf56295e28337539f2c915441025 ffffffffffffffffffffffffffffffff 40737 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/MainMenu.nib
|
||||
000000004b278085000000000000002d cac9cea56b1b8ea31eb37c7b0d5a9cbd ffffffffffffffffffffffffffffffff 92 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/InfoPlist.strings
|
||||
00000000000000000000000000000000 be0be8d045de2d508277e4936e591889 ffffffffffffffffffffffffffffffff 8 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/PkgInfo
|
||||
00000000000000000000000000000000 be0be8d045de2d508277e4936e591889 ffffffffffffffffffffffffffffffff 876 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Info.plist
|
||||
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/Mouse Click Fast.wav-23232-Free-Loops.com.wav
|
||||
07fa10c73320fcbdcaa6292d195ed7de 69053dcb035cabdc0c008ddb2781ff41 ffffffffffffffffffffffffffffffff 16448 /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/JPDatePickerCell.o
|
||||
00000000000000000000000000000000 85569b3fd791793c55b7439f04c97039 ffffffffffffffffffffffffffffffff 12007 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/alarm.png
|
||||
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timr.o
|
||||
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/untitled.o
|
BIN
build/Timr.build/Debug/Timr.build/Timr.hmap
Normal file
13
build/Timr.build/Debug/Timr.build/Timr~.dep
Normal file
|
@ -0,0 +1,13 @@
|
|||
07fa10c73320fd5ccaa6292d195ed47e 6ba5c7281bdb1d93336e734d95fc80fd ffffffffffffffffffffffffffffffff 0 /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o
|
||||
07fa10c73320fd68caa6292d195ed7de cb2920a96f792719f06864c74de72f7f ffffffffffffffffffffffffffffffff 21008 /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o
|
||||
07fa10c778077dedcaa6292d195ed758 5ec9f06fa2179386b1daab057dc439ce ffffffffffffffffffffffffffffffff 4976 /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o
|
||||
000000000be32aed000000000000016e 07fa10c778077dedcaa6292d195ed727 ffffffffffffffffffffffffffffffff 54212368 /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch.gch
|
||||
000000004b2793130000000000033e34 f6ddaf56295e28337539f2c915441025 ffffffffffffffffffffffffffffffff 42399 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/MainMenu.nib
|
||||
00000000000000000000000000000000 bd6fad812e7c3c1cb4d39498456c07e9 ffffffffffffffffffffffffffffffff 542 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-8.png
|
||||
000000004b278085000000000000002d cac9cea56b1b8ea31eb37c7b0d5a9cbd ffffffffffffffffffffffffffffffff 92 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/InfoPlist.strings
|
||||
00000000000000000000000000000000 be0be8d045de2d508277e4936e591889 ffffffffffffffffffffffffffffffff 877 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Info.plist
|
||||
00000000000000000000000000000000 be0be8d045de2d508277e4936e591889 ffffffffffffffffffffffffffffffff 8 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/PkgInfo
|
||||
ffffffffffffffffffffffffffffffff b478d6438486392513490a56ecbcde9c ffffffffffffffffffffffffffffffff 0 /Users/jeena/Projects/Timr/build/Debug/Timr.app
|
||||
ffffffffffffffffffffffffffffffff b00d2048a62daccb9bd0be29bb4b9e91 ffffffffffffffffffffffffffffffff 0 /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/MacOS/Timr
|
||||
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timr.o
|
||||
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/untitled.o
|
675
build/Timr.build/Debug/Timr.build/build-state.dat
Normal file
|
@ -0,0 +1,675 @@
|
|||
TTimr
|
||||
v7
|
||||
r0
|
||||
t282610885.926767
|
||||
cCheck dependencies
|
||||
cProcessInfoPlistFile /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Info.plist Timr-Info.plist
|
||||
cCopyStringsFile /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
|
||||
cCompileXIB /Users/jeena/Projects/Timr/English.lproj/MainMenu.xib
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/colon.png colon.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/digit-0.png digit-0.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/digit-1.png digit-1.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/digit-2.png digit-2.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/digit-3.png digit-3.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/digit-4.png digit-4.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/digit-5.png digit-5.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/digit-6.png digit-6.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/digit-7.png digit-7.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/digit-8.png digit-8.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/no_colon.png no_colon.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/pause-button.png pause-button.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/start-button.png start-button.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/digit-9.png digit-9.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/alarm-button.png alarm-button.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/alarm-sound.wav alarm-sound.wav
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/clear-button.png clear-button.png
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/click.wav click.wav
|
||||
cProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch.gch Timr_Prefix.pch normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
cCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o /Users/jeena/Projects/Timr/main.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
cCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o /Users/jeena/Projects/Timr/TimrAppDelegate.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
cCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o /Users/jeena/Projects/Timr/Timer.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
cLd /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/MacOS/Timr normal x86_64
|
||||
cTouch /Users/jeena/Projects/Timr/build/Debug/Timr.app
|
||||
|
||||
N/Developer/SDKs/MacOSX10.6.sdk
|
||||
c000000004ABBF0FD00000000000000EE
|
||||
t1253830909
|
||||
s238
|
||||
|
||||
N/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h
|
||||
c0000000040C4AA6800000000000001E5
|
||||
t1086630504
|
||||
s485
|
||||
|
||||
N/System/Library/Frameworks/Cocoa.framework/Cocoa
|
||||
c000000004A1F2D63000000000000A5E0
|
||||
t1243557219
|
||||
s42464
|
||||
|
||||
N/Users/jeena/Projects/Timr/English.lproj/InfoPlist.strings
|
||||
c000000004B278085000000000000002D
|
||||
t1260880005
|
||||
s45
|
||||
|
||||
N/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib
|
||||
c000000004B28115900000000000331D4
|
||||
t1260917081
|
||||
s209364
|
||||
|
||||
N/Users/jeena/Projects/Timr/JPDatePickerCell.h
|
||||
c000000004B27F3150000000000000131
|
||||
t1260909333
|
||||
s305
|
||||
i<Cocoa/Cocoa.h>
|
||||
|
||||
N/Users/jeena/Projects/Timr/JPDatePickerCell.m
|
||||
c000000004B27F2C00000000000000143
|
||||
t1260909248
|
||||
s323
|
||||
i"JPDatePickerCell.h"
|
||||
|
||||
N/Users/jeena/Projects/Timr/Mouse Click Fast.wav-23232-Free-Loops.com.wav
|
||||
c000000004B28130F0000000000001C5A
|
||||
t1260917519
|
||||
s7258
|
||||
|
||||
N/Users/jeena/Projects/Timr/Timer.h
|
||||
c000000004B2813AE000000000000043F
|
||||
t1260917678
|
||||
s1087
|
||||
i<Cocoa/Cocoa.h>
|
||||
|
||||
N/Users/jeena/Projects/Timr/Timer.m
|
||||
c000000004B2815420000000000001480
|
||||
t1260918082
|
||||
s5248
|
||||
i"Timer.h"
|
||||
|
||||
N/Users/jeena/Projects/Timr/Timr.h
|
||||
c000000004B27AF6100000000000000B9
|
||||
t1260892001
|
||||
s185
|
||||
i<Cocoa/Cocoa.h>
|
||||
|
||||
N/Users/jeena/Projects/Timr/Timr.m
|
||||
c000000004B27AF610000000000000186
|
||||
t1260892001
|
||||
s390
|
||||
i"Timr.h"
|
||||
|
||||
N/Users/jeena/Projects/Timr/TimrAppDelegate.h
|
||||
c000000004B280BEE0000000000000177
|
||||
t1260915694
|
||||
s375
|
||||
i<Cocoa/Cocoa.h>
|
||||
i"Timer.h"
|
||||
|
||||
N/Users/jeena/Projects/Timr/TimrAppDelegate.m
|
||||
c000000004B280C960000000000000189
|
||||
t1260915862
|
||||
s393
|
||||
i"TimrAppDelegate.h"
|
||||
|
||||
N/Users/jeena/Projects/Timr/Timr_Prefix.pch
|
||||
c000000004B278085000000000000008B
|
||||
t1260880005
|
||||
s139
|
||||
i<Cocoa/Cocoa.h>
|
||||
|
||||
N/Users/jeena/Projects/Timr/alarm-button.png
|
||||
c000000004B27CE090000000000002EE7
|
||||
t1260899849
|
||||
s12007
|
||||
|
||||
N/Users/jeena/Projects/Timr/alarm-sound.wav
|
||||
c00000000474C787200000000002D7354
|
||||
t1196193906
|
||||
s2978644
|
||||
|
||||
N/Users/jeena/Projects/Timr/alarm.png
|
||||
c000000004B27CE090000000000002EE7
|
||||
t1260899849
|
||||
s12007
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app
|
||||
t1260918085
|
||||
s102
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Info.plist
|
||||
t1260914227
|
||||
s876
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/MacOS/Timr
|
||||
t1260918085
|
||||
s23880
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/PkgInfo
|
||||
t1260914227
|
||||
s8
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/InfoPlist.strings
|
||||
t1260884925
|
||||
s92
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/MainMenu.nib
|
||||
t1260917085
|
||||
s40737
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/Mouse Click Fast.wav-23232-Free-Loops.com.wav
|
||||
t2
|
||||
s0
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/alarm-button.png
|
||||
t1260900171
|
||||
s12007
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/alarm-sound.wav
|
||||
t1260902805
|
||||
s2978644
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/alarm.png
|
||||
t1260900100
|
||||
s12007
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/clear-button.png
|
||||
t1260917064
|
||||
s2146
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/click.wav
|
||||
t1260917634
|
||||
s7258
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/colon.png
|
||||
t1260885724
|
||||
s189
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-0.png
|
||||
t1260885724
|
||||
s510
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-1.png
|
||||
t1260885724
|
||||
s374
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-2.png
|
||||
t1260885724
|
||||
s472
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-3.png
|
||||
t1260885724
|
||||
s488
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-4.png
|
||||
t1260885724
|
||||
s432
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-5.png
|
||||
t1260885724
|
||||
s477
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-6.png
|
||||
t1260885724
|
||||
s508
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-7.png
|
||||
t1260885724
|
||||
s430
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-8.png
|
||||
t1260884925
|
||||
s542
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-9.png
|
||||
t1260894539
|
||||
s512
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/no_colon.png
|
||||
t1260885304
|
||||
s134
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/pause-button.png
|
||||
t1260889835
|
||||
s12177
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/start-button.png
|
||||
t1260889835
|
||||
s12170
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/JPDatePickerCell.o
|
||||
t1260909333
|
||||
s16448
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o
|
||||
t1260918085
|
||||
s40408
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timr.LinkFileList
|
||||
c000000004B27FA10000000000000011A
|
||||
t1260911120
|
||||
s282
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timr.o
|
||||
t2
|
||||
s0
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o
|
||||
t1260917811
|
||||
s23876
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o
|
||||
t1260884934
|
||||
s4976
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/untitled.o
|
||||
t2
|
||||
s0
|
||||
|
||||
N/Users/jeena/Projects/Timr/clear-button.png
|
||||
c000000004B280F770000000000000862
|
||||
t1260916599
|
||||
s2146
|
||||
|
||||
N/Users/jeena/Projects/Timr/click.wav
|
||||
c000000004B28130F0000000000001C5A
|
||||
t1260917519
|
||||
s7258
|
||||
|
||||
N/Users/jeena/Projects/Timr/colon.png
|
||||
c000000004B278F5E00000000000000BD
|
||||
t1260883806
|
||||
s189
|
||||
|
||||
N/Users/jeena/Projects/Timr/digit-0.png
|
||||
c000000004B27891E00000000000001FE
|
||||
t1260882206
|
||||
s510
|
||||
|
||||
N/Users/jeena/Projects/Timr/digit-1.png
|
||||
c000000004B278EE10000000000000176
|
||||
t1260883681
|
||||
s374
|
||||
|
||||
N/Users/jeena/Projects/Timr/digit-2.png
|
||||
c000000004B27892A00000000000001D8
|
||||
t1260882218
|
||||
s472
|
||||
|
||||
N/Users/jeena/Projects/Timr/digit-3.png
|
||||
c000000004B27893600000000000001E8
|
||||
t1260882230
|
||||
s488
|
||||
|
||||
N/Users/jeena/Projects/Timr/digit-4.png
|
||||
c000000004B27894500000000000001B0
|
||||
t1260882245
|
||||
s432
|
||||
|
||||
N/Users/jeena/Projects/Timr/digit-5.png
|
||||
c000000004B27897900000000000001DD
|
||||
t1260882297
|
||||
s477
|
||||
|
||||
N/Users/jeena/Projects/Timr/digit-6.png
|
||||
c000000004B27899000000000000001FC
|
||||
t1260882320
|
||||
s508
|
||||
|
||||
N/Users/jeena/Projects/Timr/digit-7.png
|
||||
c000000004B27899E00000000000001AE
|
||||
t1260882334
|
||||
s430
|
||||
|
||||
N/Users/jeena/Projects/Timr/digit-8.png
|
||||
c000000004B278769000000000000021E
|
||||
t1260881769
|
||||
s542
|
||||
|
||||
N/Users/jeena/Projects/Timr/digit-9.png
|
||||
c000000004B27B9350000000000000200
|
||||
t1260894517
|
||||
s512
|
||||
|
||||
N/Users/jeena/Projects/Timr/main.m
|
||||
c000000004B27808500000000000000F4
|
||||
t1260880005
|
||||
s244
|
||||
i<Cocoa/Cocoa.h>
|
||||
|
||||
N/Users/jeena/Projects/Timr/no_colon.png
|
||||
c000000004B2794FA0000000000000086
|
||||
t1260885242
|
||||
s134
|
||||
|
||||
N/Users/jeena/Projects/Timr/pause-button.png
|
||||
c000000004B27A5D80000000000002F91
|
||||
t1260889560
|
||||
s12177
|
||||
|
||||
N/Users/jeena/Projects/Timr/start-button.png
|
||||
c000000004B27A5BF0000000000002F8A
|
||||
t1260889535
|
||||
s12170
|
||||
|
||||
N/Users/jeena/Projects/Timr/untitled.h
|
||||
c000000004B2790A200000000000000C3
|
||||
t1260884130
|
||||
s195
|
||||
i<Cocoa/Cocoa.h>
|
||||
|
||||
N/Users/jeena/Projects/Timr/untitled.m
|
||||
c000000004B2790A200000000000000B5
|
||||
t1260884130
|
||||
s181
|
||||
i"untitled.h"
|
||||
|
||||
N/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch.gch
|
||||
t1260884933
|
||||
s54212368
|
||||
|
||||
NTimr-Info.plist
|
||||
c000000004B28062800000000000003CC
|
||||
t1260914216
|
||||
s972
|
||||
|
||||
CCheck dependencies
|
||||
r0
|
||||
lSLF07#2@18"Check dependencies282610885#282610885#0(0"0(0#1#0"4300885448#0"0#
|
||||
|
||||
CCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/JPDatePickerCell.o /Users/jeena/Projects/Timr/JPDatePickerCell.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
s282602133.777527
|
||||
e282602133.949367
|
||||
r1
|
||||
xCompileC
|
||||
xbuild/Timr.build/Debug/Timr.build/Objects-normal/x86_64/JPDatePickerCell.o
|
||||
x/Users/jeena/Projects/Timr/JPDatePickerCell.m
|
||||
xnormal
|
||||
xx86_64
|
||||
xobjective-c
|
||||
xcom.apple.compilers.gcc.4_2
|
||||
lSLF07#2@53"Compile /Users/jeena/Projects/Timr/JPDatePickerCell.m282602133#282602134#0(0"0(0#0#45"/Users/jeena/Projects/Timr/JPDatePickerCell.m4300885448#1282" cd /Users/jeena/Projects/Timr
setenv LANG en_US.US-ASCII
/Developer/usr/bin/gcc-4.2 -x objective-c -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-generated-files.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-own-target-headers.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-all-target-headers.hmap -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-project-headers.hmap -F/Users/jeena/Projects/Timr/build/Debug -I/Users/jeena/Projects/Timr/build/Debug/include -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources/x86_64 -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch -c /Users/jeena/Projects/Timr/JPDatePickerCell.m -o /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/JPDatePickerCell.o
0#
|
||||
|
||||
CCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o /Users/jeena/Projects/Timr/Timer.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
s282610885.449874
|
||||
e282610885.885381
|
||||
r1
|
||||
xCompileC
|
||||
xbuild/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o
|
||||
x/Users/jeena/Projects/Timr/Timer.m
|
||||
xnormal
|
||||
xx86_64
|
||||
xobjective-c
|
||||
xcom.apple.compilers.gcc.4_2
|
||||
lSLF07#2@42"Compile /Users/jeena/Projects/Timr/Timer.m282610885#282610885#0(0"0(0#0#34"/Users/jeena/Projects/Timr/Timer.m4300885448#1260" cd /Users/jeena/Projects/Timr
setenv LANG en_US.US-ASCII
/Developer/usr/bin/gcc-4.2 -x objective-c -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-generated-files.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-own-target-headers.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-all-target-headers.hmap -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-project-headers.hmap -F/Users/jeena/Projects/Timr/build/Debug -I/Users/jeena/Projects/Timr/build/Debug/include -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources/x86_64 -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch -c /Users/jeena/Projects/Timr/Timer.m -o /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o
0#
|
||||
|
||||
CCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timr.o /Users/jeena/Projects/Timr/Timr.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
r0
|
||||
|
||||
CCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o /Users/jeena/Projects/Timr/TimrAppDelegate.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
s282610611.123035
|
||||
e282610611.544913
|
||||
r1
|
||||
xCompileC
|
||||
xbuild/Timr.build/Debug/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o
|
||||
x/Users/jeena/Projects/Timr/TimrAppDelegate.m
|
||||
xnormal
|
||||
xx86_64
|
||||
xobjective-c
|
||||
xcom.apple.compilers.gcc.4_2
|
||||
lSLF07#2@52"Compile /Users/jeena/Projects/Timr/TimrAppDelegate.m282610611#282610611#0(0"0(0#0#44"/Users/jeena/Projects/Timr/TimrAppDelegate.m4300885448#1280" cd /Users/jeena/Projects/Timr
setenv LANG en_US.US-ASCII
/Developer/usr/bin/gcc-4.2 -x objective-c -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-generated-files.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-own-target-headers.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-all-target-headers.hmap -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-project-headers.hmap -F/Users/jeena/Projects/Timr/build/Debug -I/Users/jeena/Projects/Timr/build/Debug/include -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources/x86_64 -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch -c /Users/jeena/Projects/Timr/TimrAppDelegate.m -o /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o
0#
|
||||
|
||||
CCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o /Users/jeena/Projects/Timr/main.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
s282577733.944811
|
||||
e282577734.183843
|
||||
r1
|
||||
xCompileC
|
||||
xbuild/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o
|
||||
x/Users/jeena/Projects/Timr/main.m
|
||||
xnormal
|
||||
xx86_64
|
||||
xobjective-c
|
||||
xcom.apple.compilers.gcc.4_2
|
||||
lSLF07#2@41"Compile /Users/jeena/Projects/Timr/main.m282577733#282577734#0(0"0(0#0#33"/Users/jeena/Projects/Timr/main.m4300885448#1258" cd /Users/jeena/Projects/Timr
setenv LANG en_US.US-ASCII
/Developer/usr/bin/gcc-4.2 -x objective-c -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-generated-files.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-own-target-headers.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-all-target-headers.hmap -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-project-headers.hmap -F/Users/jeena/Projects/Timr/build/Debug -I/Users/jeena/Projects/Timr/build/Debug/include -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources/x86_64 -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch -c /Users/jeena/Projects/Timr/main.m -o /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o
0#
|
||||
|
||||
CCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/untitled.o /Users/jeena/Projects/Timr/untitled.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
r0
|
||||
|
||||
CCompileXIB /Users/jeena/Projects/Timr/English.lproj/MainMenu.xib
|
||||
s282609884.658411
|
||||
e282609885.209165
|
||||
r1
|
||||
xCompileXIB
|
||||
x/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib
|
||||
o/* com.apple.ibtool.document.notices */
|
||||
o/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:603: note: This view is clipping its content.
|
||||
o/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:609: note: This view is clipping its content.
|
||||
o/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:628: note: This view is clipping its content.
|
||||
o/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:605: note: This view is clipping its content.
|
||||
o/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:611: note: This view is clipping its content.
|
||||
o/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:607: note: This view is clipping its content.
|
||||
o/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:558: note: This view is clipping its content.
|
||||
o/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:613: note: This view is clipping its content.
|
||||
lSLF07#2@37"CompileXIB English.lproj/MainMenu.xib282609884#282609885#0(840"/* com.apple.ibtool.document.notices */
/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:603: note: This view is clipping its content.
/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:609: note: This view is clipping its content.
/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:628: note: This view is clipping its content.
/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:605: note: This view is clipping its content.
/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:611: note: This view is clipping its content.
/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:607: note: This view is clipping its content.
/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:558: note: This view is clipping its content.
/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib:613: note: This view is clipping its content.
8(13@34"This view is clipping its content.282609885#18446744073709551615#0#0(6@53"/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib282609881#603#0#603#0#0"0(13@34"This view is clipping its content.282609885#18446744073709551615#0#0(6@53"/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib282609881#609#0#609#0#0"0(13@34"This view is clipping its content.282609885#18446744073709551615#0#0(6@53"/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib282609881#628#0#628#0#0"0(13@34"This view is clipping its content.282609885#18446744073709551615#0#0(6@53"/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib282609881#605#0#605#0#0"0(13@34"This view is clipping its content.282609885#18446744073709551615#0#0(6@53"/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib282609881#611#0#611#0#0"0(13@34"This view is clipping its content.282609885#18446744073709551615#0#0(6@53"/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib282609881#607#0#607#0#0"0(13@34"This view is clipping its content.282609885#18446744073709551615#0#0(6@53"/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib282609881#558#0#558#0#0"0(13@34"This view is clipping its content.282609885#18446744073709551615#0#0(6@53"/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib282609881#613#0#613#0#0"0(0#0#53"/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib4300885448#288" cd /Users/jeena/Projects/Timr
/Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/MainMenu.nib /Users/jeena/Projects/Timr/English.lproj/MainMenu.xib
0#
|
||||
|
||||
CCopyStringsFile /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
|
||||
s282577724.775255
|
||||
e282577725.517109
|
||||
r1
|
||||
xCopyStringsFile
|
||||
x/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/InfoPlist.strings
|
||||
xEnglish.lproj/InfoPlist.strings
|
||||
lSLF07#2@36"Copy English.lproj/InfoPlist.strings282577724#282577725#0(0"0(0#0#58"/Users/jeena/Projects/Timr/English.lproj/InfoPlist.strings4300885448#338" cd /Users/jeena/Projects/Timr
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj
0#
|
||||
|
||||
CCpResource "build/Debug/Timr.app/Contents/Resources/Mouse Click Fast.wav-23232-Free-Loops.com.wav" "Mouse Click Fast.wav-23232-Free-Loops.com.wav"
|
||||
r0
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/alarm-button.png alarm-button.png
|
||||
s282592971.329245
|
||||
e282592971.335842
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/alarm-button.png
|
||||
xalarm-button.png
|
||||
lSLF07#2@21"Copy alarm-button.png282592971#282592971#0(0"0(0#0#43"/Users/jeena/Projects/Timr/alarm-button.png4300885448#293" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/alarm-button.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/alarm-sound.wav alarm-sound.wav
|
||||
s282595605.209619
|
||||
e282595605.432947
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/alarm-sound.wav
|
||||
xalarm-sound.wav
|
||||
lSLF07#2@20"Copy alarm-sound.wav282595605#282595605#0(0"0(0#0#42"/Users/jeena/Projects/Timr/alarm-sound.wav4300885448#292" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/alarm-sound.wav /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/alarm.png alarm.png
|
||||
s282592900.563562
|
||||
e282592900.649885
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/alarm.png
|
||||
xalarm.png
|
||||
lSLF07#2@14"Copy alarm.png282592900#282592900#0(0"0(0#0#36"/Users/jeena/Projects/Timr/alarm.png4300885448#286" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/alarm.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/clear-button.png clear-button.png
|
||||
s282609864.225999
|
||||
e282609864.234025
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/clear-button.png
|
||||
xclear-button.png
|
||||
lSLF07#2@21"Copy clear-button.png282609864#282609864#0(0"0(0#0#43"/Users/jeena/Projects/Timr/clear-button.png4300885448#293" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/clear-button.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/click.wav click.wav
|
||||
s282610434.305861
|
||||
e282610434.349030
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/click.wav
|
||||
xclick.wav
|
||||
lSLF07#2@14"Copy click.wav282610434#282610434#0(0"0(0#0#36"/Users/jeena/Projects/Timr/click.wav4300885448#286" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/click.wav /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/colon.png colon.png
|
||||
s282578523.963134
|
||||
e282578524.184586
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/colon.png
|
||||
xcolon.png
|
||||
lSLF07#2@14"Copy colon.png282578523#282578524#0(0"0(0#0#36"/Users/jeena/Projects/Timr/colon.png4300885448#286" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/colon.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/digit-0.png digit-0.png
|
||||
s282578524.036993
|
||||
e282578524.184456
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/digit-0.png
|
||||
xdigit-0.png
|
||||
lSLF07#2@16"Copy digit-0.png282578524#282578524#0(0"0(0#0#38"/Users/jeena/Projects/Timr/digit-0.png4300885448#288" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/digit-0.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/digit-1.png digit-1.png
|
||||
s282578524.042108
|
||||
e282578524.184697
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/digit-1.png
|
||||
xdigit-1.png
|
||||
lSLF07#2@16"Copy digit-1.png282578524#282578524#0(0"0(0#0#38"/Users/jeena/Projects/Timr/digit-1.png4300885448#288" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/digit-1.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/digit-2.png digit-2.png
|
||||
s282578524.061777
|
||||
e282578524.184847
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/digit-2.png
|
||||
xdigit-2.png
|
||||
lSLF07#2@16"Copy digit-2.png282578524#282578524#0(0"0(0#0#38"/Users/jeena/Projects/Timr/digit-2.png4300885448#288" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/digit-2.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/digit-3.png digit-3.png
|
||||
s282578524.140396
|
||||
e282578524.184955
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/digit-3.png
|
||||
xdigit-3.png
|
||||
lSLF07#2@16"Copy digit-3.png282578524#282578524#0(0"0(0#0#38"/Users/jeena/Projects/Timr/digit-3.png4300885448#288" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/digit-3.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/digit-4.png digit-4.png
|
||||
s282578524.147595
|
||||
e282578524.185064
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/digit-4.png
|
||||
xdigit-4.png
|
||||
lSLF07#2@16"Copy digit-4.png282578524#282578524#0(0"0(0#0#38"/Users/jeena/Projects/Timr/digit-4.png4300885448#288" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/digit-4.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/digit-5.png digit-5.png
|
||||
s282578524.159872
|
||||
e282578524.185170
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/digit-5.png
|
||||
xdigit-5.png
|
||||
lSLF07#2@16"Copy digit-5.png282578524#282578524#0(0"0(0#0#38"/Users/jeena/Projects/Timr/digit-5.png4300885448#288" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/digit-5.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/digit-6.png digit-6.png
|
||||
s282578524.168568
|
||||
e282578524.185281
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/digit-6.png
|
||||
xdigit-6.png
|
||||
lSLF07#2@16"Copy digit-6.png282578524#282578524#0(0"0(0#0#38"/Users/jeena/Projects/Timr/digit-6.png4300885448#288" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/digit-6.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/digit-7.png digit-7.png
|
||||
s282578524.174235
|
||||
e282578524.202515
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/digit-7.png
|
||||
xdigit-7.png
|
||||
lSLF07#2@16"Copy digit-7.png282578524#282578524#0(0"0(0#0#38"/Users/jeena/Projects/Timr/digit-7.png4300885448#288" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/digit-7.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/digit-8.png digit-8.png
|
||||
s282577725.517205
|
||||
e282577725.551784
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/digit-8.png
|
||||
xdigit-8.png
|
||||
lSLF07#2@16"Copy digit-8.png282577725#282577725#0(0"0(0#0#38"/Users/jeena/Projects/Timr/digit-8.png4300885448#288" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/digit-8.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/digit-9.png digit-9.png
|
||||
s282587339.037304
|
||||
e282587339.086361
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/digit-9.png
|
||||
xdigit-9.png
|
||||
lSLF07#2@16"Copy digit-9.png282587339#282587339#0(0"0(0#0#38"/Users/jeena/Projects/Timr/digit-9.png4300885448#288" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/digit-9.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/no_colon.png no_colon.png
|
||||
s282578104.470411
|
||||
e282578104.476592
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/no_colon.png
|
||||
xno_colon.png
|
||||
lSLF07#2@17"Copy no_colon.png282578104#282578104#0(0"0(0#0#39"/Users/jeena/Projects/Timr/no_colon.png23081149961273460#289" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/no_colon.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/pause-button.png pause-button.png
|
||||
s282582635.109238
|
||||
e282582635.163607
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/pause-button.png
|
||||
xpause-button.png
|
||||
lSLF07#2@21"Copy pause-button.png282582635#282582635#0(0"0(0#0#43"/Users/jeena/Projects/Timr/pause-button.png4300885448#293" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/pause-button.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/start-button.png start-button.png
|
||||
s282582635.150459
|
||||
e282582635.164619
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/start-button.png
|
||||
xstart-button.png
|
||||
lSLF07#2@21"Copy start-button.png282582635#282582635#0(0"0(0#0#43"/Users/jeena/Projects/Timr/start-button.png4300885448#293" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/start-button.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CLd /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/MacOS/Timr normal x86_64
|
||||
s282610885.885476
|
||||
e282610885.923941
|
||||
r1
|
||||
xLd
|
||||
x/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/MacOS/Timr
|
||||
xnormal
|
||||
xx86_64
|
||||
lSLF07#2@72"Link /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/MacOS/Timr282610885#282610885#0(0"0(0#0#0"4300885448#467" cd /Users/jeena/Projects/Timr
setenv MACOSX_DEPLOYMENT_TARGET 10.6
/Developer/usr/bin/gcc-4.2 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/jeena/Projects/Timr/build/Debug -F/Users/jeena/Projects/Timr/build/Debug -filelist /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timr.LinkFileList -mmacosx-version-min=10.6 -framework Cocoa -o /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/MacOS/Timr
0#
|
||||
|
||||
CProcessInfoPlistFile /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Info.plist Timr-Info.plist
|
||||
s282607027.153720
|
||||
e282607027.162302
|
||||
r1
|
||||
xProcessInfoPlistFile
|
||||
x/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Info.plist
|
||||
xTimr-Info.plist
|
||||
lSLF07#2@23"Process Timr-Info.plist282607027#282607027#0(0"0(0#0#42"/Users/jeena/Projects/Timr/Timr-Info.plist4300885448#265" cd /Users/jeena/Projects/Timr
builtin-infoPlistUtility Timr-Info.plist -genpkginfo /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/PkgInfo -expandbuildsettings -platform macosx -o /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Info.plist
0#
|
||||
|
||||
CProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch.gch Timr_Prefix.pch normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
s282577726.078467
|
||||
e282577733.944653
|
||||
r1
|
||||
xProcessPCH
|
||||
x/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch.gch
|
||||
xTimr_Prefix.pch
|
||||
xnormal
|
||||
xx86_64
|
||||
xobjective-c
|
||||
xcom.apple.compilers.gcc.4_2
|
||||
lSLF07#2@26"Precompile Timr_Prefix.pch282577726#282577733#0(0"0(0#0#42"/Users/jeena/Projects/Timr/Timr_Prefix.pch4300885448#1179" cd /Users/jeena/Projects/Timr
setenv LANG en_US.US-ASCII
/Developer/usr/bin/gcc-4.2 -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-generated-files.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-own-target-headers.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-all-target-headers.hmap -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-project-headers.hmap -F/Users/jeena/Projects/Timr/build/Debug -I/Users/jeena/Projects/Timr/build/Debug/include -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources/x86_64 -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources -c /Users/jeena/Projects/Timr/Timr_Prefix.pch -o /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch.gch
0#
|
||||
|
||||
CTouch /Users/jeena/Projects/Timr/build/Debug/Timr.app
|
||||
s282610885.924038
|
||||
e282610885.926727
|
||||
r1
|
||||
xTouch
|
||||
x/Users/jeena/Projects/Timr/build/Debug/Timr.app
|
||||
lSLF07#2@53"Touch /Users/jeena/Projects/Timr/build/Debug/Timr.app282610885#282610885#0(0"0(0#0#0"4300885448#104" cd /Users/jeena/Projects/Timr
/usr/bin/touch -c /Users/jeena/Projects/Timr/build/Debug/Timr.app
0#
|
||||
|
278
build/Timr.build/Debug/Timr.build/build-state~.dat
Normal file
|
@ -0,0 +1,278 @@
|
|||
TTimr
|
||||
v7
|
||||
r0
|
||||
t282577734.308118
|
||||
cCheck dependencies
|
||||
cProcessInfoPlistFile /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Info.plist Timr-Info.plist
|
||||
cCopyStringsFile /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
|
||||
cCompileXIB /Users/jeena/Projects/Timr/English.lproj/MainMenu.xib
|
||||
cCpResource build/Debug/Timr.app/Contents/Resources/digit-8.png digit-8.png
|
||||
cProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch.gch Timr_Prefix.pch normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
cCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o /Users/jeena/Projects/Timr/main.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
cCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o /Users/jeena/Projects/Timr/TimrAppDelegate.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
cCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o /Users/jeena/Projects/Timr/Timer.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
|
||||
N/Developer/SDKs/MacOSX10.6.sdk
|
||||
c000000004ABBF0FD00000000000000EE
|
||||
t1253830909
|
||||
s238
|
||||
|
||||
N/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h
|
||||
c0000000040C4AA6800000000000001E5
|
||||
t1086630504
|
||||
s485
|
||||
|
||||
N/System/Library/Frameworks/Cocoa.framework/Cocoa
|
||||
c000000004A1F2D63000000000000A5E0
|
||||
t1243557219
|
||||
s42464
|
||||
|
||||
N/Users/jeena/Projects/Timr/English.lproj/InfoPlist.strings
|
||||
c000000004B278085000000000000002D
|
||||
t1260880005
|
||||
s45
|
||||
|
||||
N/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib
|
||||
c000000004B2793130000000000033E34
|
||||
t1260884755
|
||||
s212532
|
||||
|
||||
N/Users/jeena/Projects/Timr/Timer.h
|
||||
c000000004B27938F000000000000021E
|
||||
t1260884879
|
||||
s542
|
||||
i<Cocoa/Cocoa.h>
|
||||
|
||||
N/Users/jeena/Projects/Timr/Timer.m
|
||||
c000000004B2793BB00000000000001CC
|
||||
t1260884923
|
||||
s460
|
||||
i"Timer.h"
|
||||
|
||||
N/Users/jeena/Projects/Timr/Timr.h
|
||||
c000000004B2790C100000000000000BB
|
||||
t1260884161
|
||||
s187
|
||||
i<Cocoa/Cocoa.h>
|
||||
|
||||
N/Users/jeena/Projects/Timr/Timr.m
|
||||
c000000004B2790C100000000000000A9
|
||||
t1260884161
|
||||
s169
|
||||
i"Timr.h"
|
||||
|
||||
N/Users/jeena/Projects/Timr/TimrAppDelegate.h
|
||||
c000000004B278085000000000000012C
|
||||
t1260880005
|
||||
s300
|
||||
i<Cocoa/Cocoa.h>
|
||||
|
||||
N/Users/jeena/Projects/Timr/TimrAppDelegate.m
|
||||
c000000004B278085000000000000015E
|
||||
t1260880005
|
||||
s350
|
||||
i"TimrAppDelegate.h"
|
||||
|
||||
N/Users/jeena/Projects/Timr/Timr_Prefix.pch
|
||||
c000000004B278085000000000000008B
|
||||
t1260880005
|
||||
s139
|
||||
i<Cocoa/Cocoa.h>
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app
|
||||
t2
|
||||
s0
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Info.plist
|
||||
t1260884924
|
||||
s877
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/MacOS/Timr
|
||||
t2
|
||||
s0
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/PkgInfo
|
||||
t1260884924
|
||||
s8
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/InfoPlist.strings
|
||||
t1260884925
|
||||
s92
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/MainMenu.nib
|
||||
t1260884925
|
||||
s42399
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/digit-8.png
|
||||
t1260884925
|
||||
s542
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o
|
||||
t2
|
||||
s0
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timr.LinkFileList
|
||||
c000000004B2793BC000000000000011A
|
||||
t1260884924
|
||||
s282
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timr.o
|
||||
t2
|
||||
s0
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o
|
||||
t1260884934
|
||||
s21008
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o
|
||||
t1260884934
|
||||
s4976
|
||||
|
||||
N/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/untitled.o
|
||||
t2
|
||||
s0
|
||||
|
||||
N/Users/jeena/Projects/Timr/digit-8.png
|
||||
c000000004B278769000000000000021E
|
||||
t1260881769
|
||||
s542
|
||||
|
||||
N/Users/jeena/Projects/Timr/main.m
|
||||
c000000004B27808500000000000000F4
|
||||
t1260880005
|
||||
s244
|
||||
i<Cocoa/Cocoa.h>
|
||||
|
||||
N/Users/jeena/Projects/Timr/untitled.h
|
||||
c000000004B2790A200000000000000C3
|
||||
t1260884130
|
||||
s195
|
||||
i<Cocoa/Cocoa.h>
|
||||
|
||||
N/Users/jeena/Projects/Timr/untitled.m
|
||||
c000000004B2790A200000000000000B5
|
||||
t1260884130
|
||||
s181
|
||||
i"untitled.h"
|
||||
|
||||
N/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch.gch
|
||||
t1260884933
|
||||
s54212368
|
||||
|
||||
NTimr-Info.plist
|
||||
c000000004B27808500000000000003EA
|
||||
t1260880005
|
||||
s1002
|
||||
|
||||
CCheck dependencies
|
||||
r0
|
||||
lSLF07#2@18"Check dependencies282577724#282577724#0(0"0(0#1#0"7947009927035180032#0"0#
|
||||
|
||||
CCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o /Users/jeena/Projects/Timr/Timer.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
s282577734.183953
|
||||
e282577734.308023
|
||||
r0
|
||||
xCompileC
|
||||
xbuild/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o
|
||||
x/Users/jeena/Projects/Timr/Timer.m
|
||||
xnormal
|
||||
xx86_64
|
||||
xobjective-c
|
||||
xcom.apple.compilers.gcc.4_2
|
||||
o/Users/jeena/Projects/Timr/Timer.m: In function '-[Timer init]':
|
||||
o/Users/jeena/Projects/Timr/Timer.m:13: error: 'started' undeclared (first use in this function)
|
||||
o/Users/jeena/Projects/Timr/Timer.m:13: error: (Each undeclared identifier is reported only once
|
||||
o/Users/jeena/Projects/Timr/Timer.m:13: error: for each function it appears in.)
|
||||
o/Users/jeena/Projects/Timr/Timer.m:14: warning: control reaches end of non-void function
|
||||
o/Users/jeena/Projects/Timr/Timer.m: In function '-[Timer start:]':
|
||||
o/Users/jeena/Projects/Timr/Timer.m:18: warning: passing argument 1 of 'setStringValue:' from incompatible pointer type
|
||||
o/Users/jeena/Projects/Timr/Timer.m: In function '-[Timer stop:]':
|
||||
o/Users/jeena/Projects/Timr/Timer.m:24: warning: passing argument 1 of 'setStringValue:' from incompatible pointer type
|
||||
lSLF07#2@42"Compile /Users/jeena/Projects/Timr/Timer.m282577734#282577734#0(797"/Users/jeena/Projects/Timr/Timer.m: In function '-[Timer init]':
/Users/jeena/Projects/Timr/Timer.m:13: error: 'started' undeclared (first use in this function)
/Users/jeena/Projects/Timr/Timer.m:13: error: (Each undeclared identifier is reported only once
/Users/jeena/Projects/Timr/Timer.m:13: error: for each function it appears in.)
/Users/jeena/Projects/Timr/Timer.m:14: warning: control reaches end of non-void function
/Users/jeena/Projects/Timr/Timer.m: In function '-[Timer start:]':
/Users/jeena/Projects/Timr/Timer.m:18: warning: passing argument 1 of 'setStringValue:' from incompatible pointer type
/Users/jeena/Projects/Timr/Timer.m: In function '-[Timer stop:]':
/Users/jeena/Projects/Timr/Timer.m:24: warning: passing argument 1 of 'setStringValue:' from incompatible pointer type
4(4@49"'started' undeclared (first use in this function)282577734#65#96#0(6@34"/Users/jeena/Projects/Timr/Timer.m282577723#13#0#13#0#43"'*' undeclared (first use in this function)0(22@40"Control reaches end of non-void function282577734#337#89#0(6@34"/Users/jeena/Projects/Timr/Timer.m282577723#14#0#14#0#40"control reaches end of non-void function0(22@70"Passing argument 1 of 'setStringValue:' from incompatible pointer type282577734#493#119#0(6@34"/Users/jeena/Projects/Timr/Timer.m282577723#18#0#18#0#56"passing argument * of '*' from incompatible pointer type0(22@70"Passing argument 1 of 'setStringValue:' from incompatible pointer type282577734#678#119#0(6@34"/Users/jeena/Projects/Timr/Timer.m282577723#24#0#24#0#56"passing argument * of '*' from incompatible pointer type0(0#0#34"/Users/jeena/Projects/Timr/Timer.m4300885448#1260" cd /Users/jeena/Projects/Timr
setenv LANG en_US.US-ASCII
/Developer/usr/bin/gcc-4.2 -x objective-c -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-generated-files.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-own-target-headers.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-all-target-headers.hmap -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-project-headers.hmap -F/Users/jeena/Projects/Timr/build/Debug -I/Users/jeena/Projects/Timr/build/Debug/include -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources/x86_64 -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch -c /Users/jeena/Projects/Timr/Timer.m -o /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timer.o
1#
|
||||
|
||||
CCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/Timr.o /Users/jeena/Projects/Timr/Timr.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
r0
|
||||
|
||||
CCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o /Users/jeena/Projects/Timr/TimrAppDelegate.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
s282577733.945833
|
||||
e282577734.218726
|
||||
r1
|
||||
xCompileC
|
||||
xbuild/Timr.build/Debug/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o
|
||||
x/Users/jeena/Projects/Timr/TimrAppDelegate.m
|
||||
xnormal
|
||||
xx86_64
|
||||
xobjective-c
|
||||
xcom.apple.compilers.gcc.4_2
|
||||
lSLF07#2@52"Compile /Users/jeena/Projects/Timr/TimrAppDelegate.m282577733#282577734#0(0"0(0#0#44"/Users/jeena/Projects/Timr/TimrAppDelegate.m4300885448#1280" cd /Users/jeena/Projects/Timr
setenv LANG en_US.US-ASCII
/Developer/usr/bin/gcc-4.2 -x objective-c -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-generated-files.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-own-target-headers.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-all-target-headers.hmap -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-project-headers.hmap -F/Users/jeena/Projects/Timr/build/Debug -I/Users/jeena/Projects/Timr/build/Debug/include -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources/x86_64 -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch -c /Users/jeena/Projects/Timr/TimrAppDelegate.m -o /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o
0#
|
||||
|
||||
CCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o /Users/jeena/Projects/Timr/main.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
s282577733.944811
|
||||
e282577734.183843
|
||||
r1
|
||||
xCompileC
|
||||
xbuild/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o
|
||||
x/Users/jeena/Projects/Timr/main.m
|
||||
xnormal
|
||||
xx86_64
|
||||
xobjective-c
|
||||
xcom.apple.compilers.gcc.4_2
|
||||
lSLF07#2@41"Compile /Users/jeena/Projects/Timr/main.m282577733#282577734#0(0"0(0#0#33"/Users/jeena/Projects/Timr/main.m4300885448#1258" cd /Users/jeena/Projects/Timr
setenv LANG en_US.US-ASCII
/Developer/usr/bin/gcc-4.2 -x objective-c -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-generated-files.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-own-target-headers.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-all-target-headers.hmap -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-project-headers.hmap -F/Users/jeena/Projects/Timr/build/Debug -I/Users/jeena/Projects/Timr/build/Debug/include -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources/x86_64 -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch -c /Users/jeena/Projects/Timr/main.m -o /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/main.o
0#
|
||||
|
||||
CCompileC build/Timr.build/Debug/Timr.build/Objects-normal/x86_64/untitled.o /Users/jeena/Projects/Timr/untitled.m normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
r0
|
||||
|
||||
CCompileXIB /Users/jeena/Projects/Timr/English.lproj/MainMenu.xib
|
||||
s282577724.801704
|
||||
e282577726.078282
|
||||
r1
|
||||
xCompileXIB
|
||||
x/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib
|
||||
lSLF07#2@37"CompileXIB English.lproj/MainMenu.xib282577724#282577726#0(0"0(0#0#53"/Users/jeena/Projects/Timr/English.lproj/MainMenu.xib4300885448#288" cd /Users/jeena/Projects/Timr
/Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/MainMenu.nib /Users/jeena/Projects/Timr/English.lproj/MainMenu.xib
0#
|
||||
|
||||
CCopyStringsFile /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings
|
||||
s282577724.775255
|
||||
e282577725.517109
|
||||
r1
|
||||
xCopyStringsFile
|
||||
x/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj/InfoPlist.strings
|
||||
xEnglish.lproj/InfoPlist.strings
|
||||
lSLF07#2@36"Copy English.lproj/InfoPlist.strings282577724#282577725#0(0"0(0#0#58"/Users/jeena/Projects/Timr/English.lproj/InfoPlist.strings4300885448#338" cd /Users/jeena/Projects/Timr
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources/English.lproj
0#
|
||||
|
||||
CCpResource build/Debug/Timr.app/Contents/Resources/digit-8.png digit-8.png
|
||||
s282577725.517205
|
||||
e282577725.551784
|
||||
r1
|
||||
xCpResource
|
||||
xbuild/Debug/Timr.app/Contents/Resources/digit-8.png
|
||||
xdigit-8.png
|
||||
lSLF07#2@16"Copy digit-8.png282577725#282577725#0(0"0(0#0#38"/Users/jeena/Projects/Timr/digit-8.png4300885448#288" cd /Users/jeena/Projects/Timr
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/Timr/digit-8.png /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Resources
0#
|
||||
|
||||
CLd /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/MacOS/Timr normal x86_64
|
||||
r0
|
||||
|
||||
CProcessInfoPlistFile /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Info.plist Timr-Info.plist
|
||||
s282577724.730579
|
||||
e282577724.775160
|
||||
r1
|
||||
xProcessInfoPlistFile
|
||||
x/Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Info.plist
|
||||
xTimr-Info.plist
|
||||
lSLF07#2@23"Process Timr-Info.plist282577724#282577724#0(0"0(0#0#42"/Users/jeena/Projects/Timr/Timr-Info.plist30962724183932976#265" cd /Users/jeena/Projects/Timr
builtin-infoPlistUtility Timr-Info.plist -genpkginfo /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/PkgInfo -expandbuildsettings -platform macosx -o /Users/jeena/Projects/Timr/build/Debug/Timr.app/Contents/Info.plist
0#
|
||||
|
||||
CProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch.gch Timr_Prefix.pch normal x86_64 objective-c com.apple.compilers.gcc.4_2
|
||||
s282577726.078467
|
||||
e282577733.944653
|
||||
r1
|
||||
xProcessPCH
|
||||
x/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch.gch
|
||||
xTimr_Prefix.pch
|
||||
xnormal
|
||||
xx86_64
|
||||
xobjective-c
|
||||
xcom.apple.compilers.gcc.4_2
|
||||
lSLF07#2@26"Precompile Timr_Prefix.pch282577726#282577733#0(0"0(0#0#42"/Users/jeena/Projects/Timr/Timr_Prefix.pch4300885448#1179" cd /Users/jeena/Projects/Timr
setenv LANG en_US.US-ASCII
/Developer/usr/bin/gcc-4.2 -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-generated-files.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-own-target-headers.hmap -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-all-target-headers.hmap -iquote /Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/Timr-project-headers.hmap -F/Users/jeena/Projects/Timr/build/Debug -I/Users/jeena/Projects/Timr/build/Debug/include -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources/x86_64 -I/Users/jeena/Projects/Timr/build/Timr.build/Debug/Timr.build/DerivedSources -c /Users/jeena/Projects/Timr/Timr_Prefix.pch -o /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Timr_Prefix-fetjwrrllkjytpgucmfvixnpkswr/Timr_Prefix.pch.gch
0#
|
||||
|
||||
CTouch /Users/jeena/Projects/Timr/build/Debug/Timr.app
|
||||
r0
|
||||
|
BIN
build/Timr.build/Release/Timr.build/Objects-normal/i386/Timer.o
Normal file
BIN
build/Timr.build/Release/Timr.build/Objects-normal/i386/Timr
Executable file
|
@ -0,0 +1,3 @@
|
|||
/Users/jeena/Projects/Timr/build/Timr.build/Release/Timr.build/Objects-normal/i386/main.o
|
||||
/Users/jeena/Projects/Timr/build/Timr.build/Release/Timr.build/Objects-normal/i386/TimrAppDelegate.o
|
||||
/Users/jeena/Projects/Timr/build/Timr.build/Release/Timr.build/Objects-normal/i386/Timer.o
|
BIN
build/Timr.build/Release/Timr.build/Objects-normal/i386/main.o
Normal file
BIN
build/Timr.build/Release/Timr.build/Objects-normal/ppc/Timer.o
Normal file
BIN
build/Timr.build/Release/Timr.build/Objects-normal/ppc/Timr
Executable file
|
@ -0,0 +1,3 @@
|
|||
/Users/jeena/Projects/Timr/build/Timr.build/Release/Timr.build/Objects-normal/ppc/main.o
|
||||
/Users/jeena/Projects/Timr/build/Timr.build/Release/Timr.build/Objects-normal/ppc/TimrAppDelegate.o
|
||||
/Users/jeena/Projects/Timr/build/Timr.build/Release/Timr.build/Objects-normal/ppc/Timer.o
|
BIN
build/Timr.build/Release/Timr.build/Objects-normal/ppc/main.o
Normal file
BIN
build/Timr.build/Release/Timr.build/Objects-normal/x86_64/Timr
Executable file
|
@ -0,0 +1,3 @@
|
|||
/Users/jeena/Projects/Timr/build/Timr.build/Release/Timr.build/Objects-normal/x86_64/main.o
|
||||
/Users/jeena/Projects/Timr/build/Timr.build/Release/Timr.build/Objects-normal/x86_64/TimrAppDelegate.o
|
||||
/Users/jeena/Projects/Timr/build/Timr.build/Release/Timr.build/Objects-normal/x86_64/Timer.o
|