From cbe9ef8fb5767f7eb422cb665a2d37e20c6ff7ff Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Sat, 13 Nov 2010 18:31:21 +0200 Subject: fixed eject --- .gitignore | 2 + BatchDMG.m | 98 ++++++------ BatchDMG.xcodeproj/filipp.pbxuser | 115 +++++++++++++- .../BatchDMG.pbxindex/categories.pbxbtree | Bin 2508 -> 0 bytes .../BatchDMG.pbxindex/cdecls.pbxbtree | Bin 568080 -> 0 bytes .../BatchDMG.pbxindex/decls.pbxbtree | Bin 567392 -> 0 bytes .../BatchDMG.pbxindex/files.pbxbtree | Bin 6788 -> 0 bytes .../BatchDMG.pbxindex/imports.pbxbtree | Bin 19688 -> 0 bytes .../BatchDMG.pbxindex/pbxindex.header | Bin 24 -> 0 bytes .../BatchDMG.pbxindex/protocols.pbxbtree | Bin 2892 -> 0 bytes .../BatchDMG.build/BatchDMG.pbxindex/refs.pbxbtree | Bin 431076 -> 0 bytes .../BatchDMG.pbxindex/strings.pbxstrings/control | Bin 1048596 -> 0 bytes .../BatchDMG.pbxindex/strings.pbxstrings/strings | Bin 1248840 -> 0 bytes .../BatchDMG.pbxindex/subclasses.pbxbtree | Bin 2972 -> 0 bytes .../BatchDMG.pbxindex/symbols0.pbxsymbols | Bin 2125576 -> 0 bytes .../BatchDMG-all-target-headers.hmap | Bin 793 -> 0 bytes .../BatchDMG.build/BatchDMG-generated-files.hmap | Bin 121 -> 0 bytes .../BatchDMG-own-target-headers.hmap | Bin 793 -> 0 bytes .../BatchDMG.build/BatchDMG-project-headers.hmap | Bin 842 -> 0 bytes .../Debug/BatchDMG.build/BatchDMG.dep | 6 - .../Debug/BatchDMG.build/BatchDMG.hmap | Bin 1610 -> 0 bytes .../Debug/BatchDMG.build/BatchDMG~.dep | 3 - .../Objects-normal/x86_64/BatchDMG.LinkFileList | 1 - .../Objects-normal/x86_64/BatchDMG.o | Bin 17520 -> 0 bytes .../Debug/BatchDMG.build/build-state.dat | 170 --------------------- .../Debug/BatchDMG.build/build-state~.dat | 106 ------------- build/Debug/BatchDMG | Bin 15216 -> 0 bytes 27 files changed, 168 insertions(+), 333 deletions(-) create mode 100644 .gitignore delete mode 100755 build/BatchDMG.build/BatchDMG.pbxindex/categories.pbxbtree delete mode 100755 build/BatchDMG.build/BatchDMG.pbxindex/cdecls.pbxbtree delete mode 100755 build/BatchDMG.build/BatchDMG.pbxindex/decls.pbxbtree delete mode 100755 build/BatchDMG.build/BatchDMG.pbxindex/files.pbxbtree delete mode 100755 build/BatchDMG.build/BatchDMG.pbxindex/imports.pbxbtree delete mode 100755 build/BatchDMG.build/BatchDMG.pbxindex/pbxindex.header delete mode 100755 build/BatchDMG.build/BatchDMG.pbxindex/protocols.pbxbtree delete mode 100755 build/BatchDMG.build/BatchDMG.pbxindex/refs.pbxbtree delete mode 100755 build/BatchDMG.build/BatchDMG.pbxindex/strings.pbxstrings/control delete mode 100755 build/BatchDMG.build/BatchDMG.pbxindex/strings.pbxstrings/strings delete mode 100755 build/BatchDMG.build/BatchDMG.pbxindex/subclasses.pbxbtree delete mode 100755 build/BatchDMG.build/BatchDMG.pbxindex/symbols0.pbxsymbols delete mode 100755 build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-all-target-headers.hmap delete mode 100755 build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-generated-files.hmap delete mode 100755 build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-own-target-headers.hmap delete mode 100755 build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-project-headers.hmap delete mode 100755 build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG.dep delete mode 100755 build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG.hmap delete mode 100755 build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG~.dep delete mode 100755 build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.LinkFileList delete mode 100644 build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o delete mode 100755 build/BatchDMG.build/Debug/BatchDMG.build/build-state.dat delete mode 100755 build/BatchDMG.build/Debug/BatchDMG.build/build-state~.dat delete mode 100755 build/Debug/BatchDMG diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e81adc3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +build/* diff --git a/BatchDMG.m b/BatchDMG.m index 6eebaca..078d978 100755 --- a/BatchDMG.m +++ b/BatchDMG.m @@ -5,6 +5,7 @@ { BOOL g_observing; NSString *destination; + NSMutableArray *sources; } - (void)observeWorkspace: (NSNotification*) notification; @@ -21,7 +22,7 @@ // observer for disk mounts if (!g_observing) { - NSLog(@"Waiting for media..."); + NSLog(@"Waiting for media..."); NSNotificationCenter* center; center = [[NSWorkspace sharedWorkspace] notificationCenter]; @@ -31,6 +32,7 @@ object: nil]; g_observing = YES; + sources = [NSMutableArray arrayWithCapacity:99]; } // observer for finished rips @@ -40,28 +42,58 @@ object:nil]; return self; + } - (void)checkTaskStatus:(NSNotification *)aNotification { - int status = [[aNotification object] terminationStatus]; - NSLog(@"Task completed with status %d", status); - id args = [[aNotification object] arguments]; - NSLog(@"%@", args); - - if (status == 0) - { - NSLog(@"Task succeeded."); - if ([args length] > 4) - { - NSString *path = [args objectAtIndex:4]; - NSArray *eject = [NSArray arrayWithObjects:@"eject", @"-quiet", path, nil]; - [NSTask launchedTaskWithLaunchPath:@"/usr/bin/hdiutil" arguments:eject]; + int status = [[aNotification object] terminationStatus]; + NSLog(@"hdiutil completed with status %d", status); + NSArray *args = [[aNotification object] arguments]; + + if (status == 0) + { + if ([args count] > 4) + { + NSString *path = [args objectAtIndex:5]; + NSArray *eject = [NSArray arrayWithObjects:@"eject", @"-quiet", path, nil]; + [NSTask launchedTaskWithLaunchPath:@"/usr/bin/hdiutil" arguments:eject]; + [sources removeObjectIdenticalTo:[args objectAtIndex:6]]; } - } } +- (void)observeWorkspace: (NSNotification*)notification +{ + id ui = [notification userInfo]; + NSString *path = [ui valueForKey:@"NSDevicePath"]; + NSString *volName = [ui valueForKey:@"NSWorkspaceVolumeLocalizedNameKey"]; + + // disc is already being ripped + if ([sources containsObject:volName]) { + return; + } + + NSLog(@"Imaging: %@", volName); + + NSTask *dmg = [[NSTask alloc] init]; + NSMutableArray *args = [NSMutableArray arrayWithObjects:@"create", + @"-ov", + @"-format", + @"UDBZ", + @"-srcfolder", + path, + volName, + nil]; + + [sources addObject:volName]; + [dmg setCurrentDirectoryPath:@"/tmp/"]; + [dmg setLaunchPath:@"/usr/bin/hdiutil"]; + [dmg setArguments:args]; + [dmg launch]; + +} + - (void)dealloc { if (g_observing) @@ -87,40 +119,16 @@ } -- (void)observeWorkspace: (NSNotification*)notification -{ - id ui = [notification userInfo]; - id path = [ui valueForKey:@"NSDevicePath"]; - id volName = [ui valueForKey:@"NSWorkspaceVolumeLocalizedNameKey"]; - - NSLog(@"Imaging: %@", volName); - - NSTask *dmg = [[NSTask alloc] init]; - NSMutableArray *args = [NSMutableArray arrayWithObjects:@"create", - @"-format", - @"UDBZ", - @"-srcfolder", - path, - volName, - nil]; - - [dmg setCurrentDirectoryPath:@"/tmp/"]; - [dmg setLaunchPath:@"/usr/bin/hdiutil"]; - [dmg setArguments:args]; - [dmg launch]; - -} - @end -int main (int argc, const char * argv[]) +int main(int argc, const char * argv[]) { - NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + + NSRunLoop *rl = [NSRunLoop currentRunLoop]; + [[Imager alloc] init]; + [rl run]; - //NSRunLoop *rl = [NSRunLoop currentRunLoop]; - //[[Imager alloc] init]; - //[rl run]; - NSLog(@"%d", argv[1]); [pool release]; return 0; } diff --git a/BatchDMG.xcodeproj/filipp.pbxuser b/BatchDMG.xcodeproj/filipp.pbxuser index dfb4f71..e20e0e4 100644 --- a/BatchDMG.xcodeproj/filipp.pbxuser +++ b/BatchDMG.xcodeproj/filipp.pbxuser @@ -9,13 +9,32 @@ C28049A5128A0C1B000C37B1 /* BatchDMG */, ); perUserDictionary = { - PBXPerProjectTemplateStateSaveDate = 311036955; - PBXWorkspaceStateSaveDate = 311036955; + PBXPerProjectTemplateStateSaveDate = 311354256; + PBXWorkspaceStateSaveDate = 311354256; + }; + perUserProjectItems = { + C28049CB128D5C57000C37B1 = C28049CB128D5C57000C37B1 /* PBXTextBookmark */; + C28049CC128D5C57000C37B1 = C28049CC128D5C57000C37B1 /* PBXTextBookmark */; + C2B7A430128EE39800B3368C /* PBXTextBookmark */ = C2B7A430128EE39800B3368C /* PBXTextBookmark */; + C2B7A43A128EE59300B3368C /* PBXTextBookmark */ = C2B7A43A128EE59300B3368C /* PBXTextBookmark */; + C2B7A445128EE5BE00B3368C /* PBXTextBookmark */ = C2B7A445128EE5BE00B3368C /* PBXTextBookmark */; + C2B7A44F128EE90A00B3368C /* PBXTextBookmark */ = C2B7A44F128EE90A00B3368C /* PBXTextBookmark */; + C2B7A454128EE99600B3368C /* PBXTextBookmark */ = C2B7A454128EE99600B3368C /* PBXTextBookmark */; + C2B7A45B128EECFA00B3368C /* PBXTextBookmark */ = C2B7A45B128EECFA00B3368C /* PBXTextBookmark */; + C2B7A468128EEDAC00B3368C /* PBXTextBookmark */ = C2B7A468128EEDAC00B3368C /* PBXTextBookmark */; }; sourceControlManager = C28049AD128A0C3B000C37B1 /* Source Control */; userBuildSettings = { }; }; + 08FB7796FE84155DC02AAC07 /* BatchDMG.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {752, 1833}}"; + sepNavSelRange = "{1261, 0}"; + sepNavVisRange = "{401, 1582}"; + sepNavWindowFrame = "{{654, 0}, {738, 878}}"; + }; + }; 8DD76F960486AA7600D96B5E /* BatchDMG */ = { activeExec = 0; executables = ( @@ -38,6 +57,7 @@ dataTipSortType = 0; debuggerPlugin = GDBDebugging; disassemblyDisplayState = 0; + dylibVariantSuffix = ""; enableDebugStr = 1; environmentEntries = ( ); @@ -45,9 +65,13 @@ executableUserSymbolLevel = 0; libgmallocEnabled = 0; name = BatchDMG; + savedGlobals = { + }; showTypeColumn = 0; sourceDirectories = ( ); + variableFormatDictionary = { + }; }; C28049AD128A0C3B000C37B1 /* Source Control */ = { isa = PBXSourceControlManager; @@ -63,4 +87,91 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; + C28049CB128D5C57000C37B1 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 08FB7796FE84155DC02AAC07 /* BatchDMG.m */; + rLen = 0; + rLoc = 3377; + rType = 0; + }; + C28049CC128D5C57000C37B1 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 08FB7796FE84155DC02AAC07 /* BatchDMG.m */; + name = "BatchDMG.m: 131"; + rLen = 0; + rLoc = 3377; + rType = 0; + vrLen = 1331; + vrLoc = 1449; + }; + C2B7A430128EE39800B3368C /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 08FB7796FE84155DC02AAC07 /* BatchDMG.m */; + name = "BatchDMG.m: 131"; + rLen = 0; + rLoc = 3377; + rType = 0; + vrLen = 1329; + vrLoc = 1449; + }; + C2B7A43A128EE59300B3368C /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 08FB7796FE84155DC02AAC07 /* BatchDMG.m */; + name = "BatchDMG.m: 115"; + rLen = 0; + rLoc = 3144; + rType = 0; + vrLen = 1357; + vrLoc = 1550; + }; + C2B7A445128EE5BE00B3368C /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 08FB7796FE84155DC02AAC07 /* BatchDMG.m */; + name = "BatchDMG.m: 65"; + rLen = 0; + rLoc = 1614; + rType = 0; + vrLen = 1483; + vrLoc = 968; + }; + C2B7A44F128EE90A00B3368C /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 08FB7796FE84155DC02AAC07 /* BatchDMG.m */; + name = "BatchDMG.m: 73"; + rLen = 0; + rLoc = 1879; + rType = 0; + vrLen = 1508; + vrLoc = 1063; + }; + C2B7A454128EE99600B3368C /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 08FB7796FE84155DC02AAC07 /* BatchDMG.m */; + name = "BatchDMG.m: 82"; + rLen = 0; + rLoc = 2149; + rType = 0; + vrLen = 1561; + vrLoc = 984; + }; + C2B7A45B128EECFA00B3368C /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 08FB7796FE84155DC02AAC07 /* BatchDMG.m */; + name = "BatchDMG.m: 52"; + rLen = 0; + rLoc = 1181; + rType = 0; + vrLen = 1477; + vrLoc = 289; + }; + C2B7A468128EEDAC00B3368C /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 08FB7796FE84155DC02AAC07 /* BatchDMG.m */; + name = "BatchDMG.m: 53"; + rLen = 0; + rLoc = 1237; + rType = 0; + vrLen = 1582; + vrLoc = 401; + }; } diff --git a/build/BatchDMG.build/BatchDMG.pbxindex/categories.pbxbtree b/build/BatchDMG.build/BatchDMG.pbxindex/categories.pbxbtree deleted file mode 100755 index fe4be93..0000000 Binary files a/build/BatchDMG.build/BatchDMG.pbxindex/categories.pbxbtree and /dev/null differ diff --git a/build/BatchDMG.build/BatchDMG.pbxindex/cdecls.pbxbtree b/build/BatchDMG.build/BatchDMG.pbxindex/cdecls.pbxbtree deleted file mode 100755 index aadb72f..0000000 Binary files a/build/BatchDMG.build/BatchDMG.pbxindex/cdecls.pbxbtree and /dev/null differ diff --git a/build/BatchDMG.build/BatchDMG.pbxindex/decls.pbxbtree b/build/BatchDMG.build/BatchDMG.pbxindex/decls.pbxbtree deleted file mode 100755 index ae53a03..0000000 Binary files a/build/BatchDMG.build/BatchDMG.pbxindex/decls.pbxbtree and /dev/null differ diff --git a/build/BatchDMG.build/BatchDMG.pbxindex/files.pbxbtree b/build/BatchDMG.build/BatchDMG.pbxindex/files.pbxbtree deleted file mode 100755 index 363db0b..0000000 Binary files a/build/BatchDMG.build/BatchDMG.pbxindex/files.pbxbtree and /dev/null differ diff --git a/build/BatchDMG.build/BatchDMG.pbxindex/imports.pbxbtree b/build/BatchDMG.build/BatchDMG.pbxindex/imports.pbxbtree deleted file mode 100755 index 6b602c6..0000000 Binary files a/build/BatchDMG.build/BatchDMG.pbxindex/imports.pbxbtree and /dev/null differ diff --git a/build/BatchDMG.build/BatchDMG.pbxindex/pbxindex.header b/build/BatchDMG.build/BatchDMG.pbxindex/pbxindex.header deleted file mode 100755 index 8e36c52..0000000 Binary files a/build/BatchDMG.build/BatchDMG.pbxindex/pbxindex.header and /dev/null differ diff --git a/build/BatchDMG.build/BatchDMG.pbxindex/protocols.pbxbtree b/build/BatchDMG.build/BatchDMG.pbxindex/protocols.pbxbtree deleted file mode 100755 index 93188f8..0000000 Binary files a/build/BatchDMG.build/BatchDMG.pbxindex/protocols.pbxbtree and /dev/null differ diff --git a/build/BatchDMG.build/BatchDMG.pbxindex/refs.pbxbtree b/build/BatchDMG.build/BatchDMG.pbxindex/refs.pbxbtree deleted file mode 100755 index 249534a..0000000 Binary files a/build/BatchDMG.build/BatchDMG.pbxindex/refs.pbxbtree and /dev/null differ diff --git a/build/BatchDMG.build/BatchDMG.pbxindex/strings.pbxstrings/control b/build/BatchDMG.build/BatchDMG.pbxindex/strings.pbxstrings/control deleted file mode 100755 index d184cbb..0000000 Binary files a/build/BatchDMG.build/BatchDMG.pbxindex/strings.pbxstrings/control and /dev/null differ diff --git a/build/BatchDMG.build/BatchDMG.pbxindex/strings.pbxstrings/strings b/build/BatchDMG.build/BatchDMG.pbxindex/strings.pbxstrings/strings deleted file mode 100755 index 0987914..0000000 Binary files a/build/BatchDMG.build/BatchDMG.pbxindex/strings.pbxstrings/strings and /dev/null differ diff --git a/build/BatchDMG.build/BatchDMG.pbxindex/subclasses.pbxbtree b/build/BatchDMG.build/BatchDMG.pbxindex/subclasses.pbxbtree deleted file mode 100755 index 7635b38..0000000 Binary files a/build/BatchDMG.build/BatchDMG.pbxindex/subclasses.pbxbtree and /dev/null differ diff --git a/build/BatchDMG.build/BatchDMG.pbxindex/symbols0.pbxsymbols b/build/BatchDMG.build/BatchDMG.pbxindex/symbols0.pbxsymbols deleted file mode 100755 index db45e76..0000000 Binary files a/build/BatchDMG.build/BatchDMG.pbxindex/symbols0.pbxsymbols and /dev/null differ diff --git a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-all-target-headers.hmap b/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-all-target-headers.hmap deleted file mode 100755 index 5d74c43..0000000 Binary files a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-all-target-headers.hmap and /dev/null differ diff --git a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-generated-files.hmap b/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-generated-files.hmap deleted file mode 100755 index dd8b535..0000000 Binary files a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-generated-files.hmap and /dev/null differ diff --git a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-own-target-headers.hmap b/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-own-target-headers.hmap deleted file mode 100755 index 5d74c43..0000000 Binary files a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-own-target-headers.hmap and /dev/null differ diff --git a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-project-headers.hmap b/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-project-headers.hmap deleted file mode 100755 index 0f3a9d3..0000000 Binary files a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-project-headers.hmap and /dev/null differ diff --git a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG.dep b/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG.dep deleted file mode 100755 index c8f35e3..0000000 --- a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG.dep +++ /dev/null @@ -1,6 +0,0 @@ -17a7efc4e90cf69ac3fca6c40272c5b7 ed632ed199e905036954c522db989be7 ffffffffffffffffffffffffffffffff 17520 /Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o -fac4c1153ca01fd5aaa863e6dbed31be 499a1b4ec6abb77cb9e205410a2280a0 ffffffffffffffffffffffffffffffff 15216 /Users/filipp/Code/BatchDMG/build/Debug/BatchDMG -00000000075165f70000000000001378 17a7efc4a2f6774cc3fca6c40272d9f7 ffffffffffffffffffffffffffffffff 41401104 /var/folders/KY/KYwhLH0VFs0U42CaTNfMU++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/BatchDMG_Prefix-bxcpvhnikzxevkcfktdsaukrpgzw/BatchDMG_Prefix.pch.gch -ffffffffffffffffffffffffffffffff c2ea0ec17f345f824c2ebf40c758781f ffffffffffffffffffffffffffffffff 17920 /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o -ffffffffffffffffffffffffffffffff 9243a35c26188a686c23b50b0b3b9a7f ffffffffffffffffffffffffffffffff 15176 /var/root/Documents/BatchDMG/build/Debug/BatchDMG -00000000075165f60000000000001378 40efb5f9ecccc7b617935fa23494702e ffffffffffffffffffffffffffffffff 41401104 /var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Caches-/com.apple.Xcode.0/SharedPrecompiledHeaders/BatchDMG_Prefix-cjamafzhdlnszfbhxkkomaoonynb/BatchDMG_Prefix.pch.gch diff --git a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG.hmap b/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG.hmap deleted file mode 100755 index 20b5dc5..0000000 Binary files a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG.hmap and /dev/null differ diff --git a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG~.dep b/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG~.dep deleted file mode 100755 index a53f86a..0000000 --- a/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG~.dep +++ /dev/null @@ -1,3 +0,0 @@ -8205bb38dfff64865bbde0e2f37f697e b03d6df73acc867340abdc9ed6366c66 ffffffffffffffffffffffffffffffff 0 /var/root/Documents/BatchDMG/build/Debug/BatchDMG -40efb5f9a72e381717935fa2349465cf c2ea0ec17f345f824c2ebf40c758781f ffffffffffffffffffffffffffffffff 10264 /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o -00000000075165f60000000000001378 40efb5f9ecccc7b617935fa23494702e ffffffffffffffffffffffffffffffff 41401104 /var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Caches-/com.apple.Xcode.0/SharedPrecompiledHeaders/BatchDMG_Prefix-cjamafzhdlnszfbhxkkomaoonynb/BatchDMG_Prefix.pch.gch diff --git a/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.LinkFileList b/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.LinkFileList deleted file mode 100755 index 34d557b..0000000 --- a/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.LinkFileList +++ /dev/null @@ -1 +0,0 @@ -/Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o diff --git a/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o b/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o deleted file mode 100644 index dfd6609..0000000 Binary files a/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o and /dev/null differ diff --git a/build/BatchDMG.build/Debug/BatchDMG.build/build-state.dat b/build/BatchDMG.build/Debug/BatchDMG.build/build-state.dat deleted file mode 100755 index e629fa9..0000000 --- a/build/BatchDMG.build/Debug/BatchDMG.build/build-state.dat +++ /dev/null @@ -1,170 +0,0 @@ -TBatchDMG -v7 -r0 -t311038161.031803 -cCheck dependencies -cProcessPCH /var/folders/KY/KYwhLH0VFs0U42CaTNfMU++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/BatchDMG_Prefix-bxcpvhnikzxevkcfktdsaukrpgzw/BatchDMG_Prefix.pch.gch BatchDMG_Prefix.pch normal x86_64 objective-c com.apple.compilers.gcc.4_2 -cCompileC build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o /Users/filipp/Code/BatchDMG/BatchDMG.m normal x86_64 objective-c com.apple.compilers.gcc.4_2 -cLd /Users/filipp/Code/BatchDMG/build/Debug/BatchDMG normal x86_64 - -N/Developer/SDKs/MacOSX10.6.sdk -c000000004C5A608E00000000000000EE -t1280991374 -s238 - -N/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.h -c000000004BE2C6D100000000000017ED -t1273153233 -s6125 - -N/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h -c000000004B90FBB700000000000013E6 -t1267792823 -s5094 - -N/System/Library/Frameworks/AppKit.framework/AppKit -c000000004C623FBF0000000002B48610 -t1281507263 -s45385232 - -N/System/Library/Frameworks/Foundation.framework/Foundation -c000000004C7DB37D0000000000B3E910 -t1283306365 -s11790608 - -N/Users/filipp/Code/BatchDMG/BatchDMG.m -c000000004CD9D9470000000000000B33 -t1289345351 -s2867 -i -i - -N/Users/filipp/Code/BatchDMG/BatchDMG_Prefix.pch -c000000004CC19E40000000000000009E -t1287757376 -s158 -i - -N/Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.LinkFileList -c000000004CD9D5830000000000000067 -t1289344387 -s103 - -N/Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o -t1289345353 -s17520 - -N/Users/filipp/Code/BatchDMG/build/Debug/BatchDMG -t1289345353 -s15216 - -N/var/folders/KY/KYwhLH0VFs0U42CaTNfMU++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/BatchDMG_Prefix-bxcpvhnikzxevkcfktdsaukrpgzw/BatchDMG_Prefix.pch.gch -t1289344390 -s41401104 - -N/var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Caches-/com.apple.Xcode.0/SharedPrecompiledHeaders/BatchDMG_Prefix-cjamafzhdlnszfbhxkkomaoonynb/BatchDMG_Prefix.pch.gch -t1287759715 -s41401104 - -N/var/root/Documents/BatchDMG/BatchDMG.m -c000000004CC5602D0000000000000B80 -t1288003629 -s2944 -i -i - -N/var/root/Documents/BatchDMG/BatchDMG_Prefix.pch -c000000004CC19E41000000000000009E -t1287757377 -s158 -i - -N/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.LinkFileList -c000000004CC1A7610000000000000068 -t1287759713 -s104 - -N/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o -t1288002952 -s17920 - -N/var/root/Documents/BatchDMG/build/Debug/BatchDMG -t1288002952 -s15176 - -CCheck dependencies -r0 -lSLF07#2@18"Check dependencies311038161#311038161#0(0"0(0#1#0"8608431296#0"0# - -CCompileC build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o /Users/filipp/Code/BatchDMG/BatchDMG.m normal x86_64 objective-c com.apple.compilers.gcc.4_2 -s311038153.585309 -e311038153.900437 -r1 -xCompileC -xbuild/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o -x/Users/filipp/Code/BatchDMG/BatchDMG.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.gcc.4_2 -lSLF07#2@46"Compile /Users/filipp/Code/BatchDMG/BatchDMG.m311038153#311038153#0(0"0(0#0#38"/Users/filipp/Code/BatchDMG/BatchDMG.m8608434880#1357" cd /Users/filipp/Code/BatchDMG 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/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-generated-files.hmap -I/Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-own-target-headers.hmap -I/Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-all-target-headers.hmap -iquote /Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-project-headers.hmap -F/Users/filipp/Code/BatchDMG/build/Debug -I/Users/filipp/Code/BatchDMG/build/Debug/include -I/Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/DerivedSources/x86_64 -I/Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/DerivedSources -include /var/folders/KY/KYwhLH0VFs0U42CaTNfMU++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/BatchDMG_Prefix-bxcpvhnikzxevkcfktdsaukrpgzw/BatchDMG_Prefix.pch -c /Users/filipp/Code/BatchDMG/BatchDMG.m -o /Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o 0# - -CCompileC build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o /var/root/Documents/BatchDMG/BatchDMG.m normal x86_64 objective-c com.apple.compilers.gcc.4_2 -s309695752.014445 -e309695752.433165 -r1 -xCompileC -xbuild/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o -x/var/root/Documents/BatchDMG/BatchDMG.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.gcc.4_2 -lSLF07#2@47"Compile /var/root/Documents/BatchDMG/BatchDMG.m309695752#309695752#0(0"0(0#0#39"/var/root/Documents/BatchDMG/BatchDMG.m8636785760#1366" cd /var/root/Documents/BatchDMG 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 /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-generated-files.hmap -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-own-target-headers.hmap -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-all-target-headers.hmap -iquote /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-project-headers.hmap -F/var/root/Documents/BatchDMG/build/Debug -I/var/root/Documents/BatchDMG/build/Debug/include -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/DerivedSources/x86_64 -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/DerivedSources -include /var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Caches-/com.apple.Xcode.0/SharedPrecompiledHeaders/BatchDMG_Prefix-cjamafzhdlnszfbhxkkomaoonynb/BatchDMG_Prefix.pch -c /var/root/Documents/BatchDMG/BatchDMG.m -o /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o 0# - -CLd /Users/filipp/Code/BatchDMG/build/Debug/BatchDMG normal x86_64 -s311038153.900523 -e311038153.939062 -r1 -xLd -x/Users/filipp/Code/BatchDMG/build/Debug/BatchDMG -xnormal -xx86_64 -lSLF07#2@53"Link /Users/filipp/Code/BatchDMG/build/Debug/BatchDMG311038153#311038153#0(0"0(0#0#0"8607504768#487" cd /Users/filipp/Code/BatchDMG setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/gcc-4.2 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/filipp/Code/BatchDMG/build/Debug -F/Users/filipp/Code/BatchDMG/build/Debug -filelist /Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.LinkFileList -mmacosx-version-min=10.6 -framework Foundation -framework AppKit -o /Users/filipp/Code/BatchDMG/build/Debug/BatchDMG 0# - -CLd /var/root/Documents/BatchDMG/build/Debug/BatchDMG normal x86_64 -s309695752.433280 -e309695752.468255 -r1 -xLd -x/var/root/Documents/BatchDMG/build/Debug/BatchDMG -xnormal -xx86_64 -lSLF07#2@54"Link /var/root/Documents/BatchDMG/build/Debug/BatchDMG309695752#309695752#0(0"0(0#0#0"8662633632#492" cd /var/root/Documents/BatchDMG setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/gcc-4.2 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/var/root/Documents/BatchDMG/build/Debug -F/var/root/Documents/BatchDMG/build/Debug -filelist /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.LinkFileList -mmacosx-version-min=10.6 -framework Foundation -framework AppKit -o /var/root/Documents/BatchDMG/build/Debug/BatchDMG 0# - -CProcessPCH /var/folders/KY/KYwhLH0VFs0U42CaTNfMU++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/BatchDMG_Prefix-bxcpvhnikzxevkcfktdsaukrpgzw/BatchDMG_Prefix.pch.gch BatchDMG_Prefix.pch normal x86_64 objective-c com.apple.compilers.gcc.4_2 -s311037187.780305 -e311037190.517578 -r1 -xProcessPCH -x/var/folders/KY/KYwhLH0VFs0U42CaTNfMU++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/BatchDMG_Prefix-bxcpvhnikzxevkcfktdsaukrpgzw/BatchDMG_Prefix.pch.gch -xBatchDMG_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.gcc.4_2 -lSLF07#2@30"Precompile BatchDMG_Prefix.pch311037187#311037190#0(0"0(0#0#47"/Users/filipp/Code/BatchDMG/BatchDMG_Prefix.pch5791426043007493120#1265" cd /Users/filipp/Code/BatchDMG 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/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-generated-files.hmap -I/Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-own-target-headers.hmap -I/Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-all-target-headers.hmap -iquote /Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-project-headers.hmap -F/Users/filipp/Code/BatchDMG/build/Debug -I/Users/filipp/Code/BatchDMG/build/Debug/include -I/Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/DerivedSources/x86_64 -I/Users/filipp/Code/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/DerivedSources -c /Users/filipp/Code/BatchDMG/BatchDMG_Prefix.pch -o /var/folders/KY/KYwhLH0VFs0U42CaTNfMU++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/BatchDMG_Prefix-bxcpvhnikzxevkcfktdsaukrpgzw/BatchDMG_Prefix.pch.gch 0# - -CProcessPCH /var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Caches-/com.apple.Xcode.0/SharedPrecompiledHeaders/BatchDMG_Prefix-cjamafzhdlnszfbhxkkomaoonynb/BatchDMG_Prefix.pch.gch BatchDMG_Prefix.pch normal x86_64 objective-c com.apple.compilers.gcc.4_2 -s309452513.780842 -e309452515.553407 -r1 -xProcessPCH -x/var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Caches-/com.apple.Xcode.0/SharedPrecompiledHeaders/BatchDMG_Prefix-cjamafzhdlnszfbhxkkomaoonynb/BatchDMG_Prefix.pch.gch -xBatchDMG_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.gcc.4_2 -lSLF07#2@30"Precompile BatchDMG_Prefix.pch309452513#309452515#0(0"0(0#0#48"/var/root/Documents/BatchDMG/BatchDMG_Prefix.pch8612246048#1273" cd /var/root/Documents/BatchDMG 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 /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-generated-files.hmap -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-own-target-headers.hmap -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-all-target-headers.hmap -iquote /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-project-headers.hmap -F/var/root/Documents/BatchDMG/build/Debug -I/var/root/Documents/BatchDMG/build/Debug/include -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/DerivedSources/x86_64 -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/DerivedSources -c /var/root/Documents/BatchDMG/BatchDMG_Prefix.pch -o /var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Caches-/com.apple.Xcode.0/SharedPrecompiledHeaders/BatchDMG_Prefix-cjamafzhdlnszfbhxkkomaoonynb/BatchDMG_Prefix.pch.gch 0# - diff --git a/build/BatchDMG.build/Debug/BatchDMG.build/build-state~.dat b/build/BatchDMG.build/Debug/BatchDMG.build/build-state~.dat deleted file mode 100755 index 4ea0519..0000000 --- a/build/BatchDMG.build/Debug/BatchDMG.build/build-state~.dat +++ /dev/null @@ -1,106 +0,0 @@ -TBatchDMG -v7 -r0 -t309452515.792571 -cCheck dependencies -cProcessPCH /var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Caches-/com.apple.Xcode.0/SharedPrecompiledHeaders/BatchDMG_Prefix-cjamafzhdlnszfbhxkkomaoonynb/BatchDMG_Prefix.pch.gch BatchDMG_Prefix.pch normal x86_64 objective-c com.apple.compilers.gcc.4_2 -cCompileC build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o /var/root/Documents/BatchDMG/BatchDMG.m normal x86_64 objective-c com.apple.compilers.gcc.4_2 -cLd /var/root/Documents/BatchDMG/build/Debug/BatchDMG normal x86_64 - -N/Developer/SDKs/MacOSX10.6.sdk -c000000004BF4701900000000000000EE -t1274310681 -s238 - -N/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.h -c000000004BE2C6D100000000000017ED -t1273153233 -s6125 - -N/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h -c000000004B90FBB700000000000013E6 -t1267792823 -s5094 - -N/System/Library/Frameworks/Foundation.framework/Foundation -c000000004C11730A0000000000B37440 -t1276211978 -s11760704 - -N/var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Caches-/com.apple.Xcode.0/SharedPrecompiledHeaders/BatchDMG_Prefix-cjamafzhdlnszfbhxkkomaoonynb/BatchDMG_Prefix.pch.gch -t1287759715 -s41401104 - -N/var/root/Documents/BatchDMG/BatchDMG.m -c000000004CC1A7310000000000000292 -t1287759665 -s658 -i -i - -N/var/root/Documents/BatchDMG/BatchDMG_Prefix.pch -c000000004CC19E41000000000000009E -t1287757377 -s158 -i - -N/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.LinkFileList -c000000004CC1A7610000000000000068 -t1287759713 -s104 - -N/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o -t1287759715 -s10264 - -N/var/root/Documents/BatchDMG/build/Debug/BatchDMG -t2 -s0 - -CCheck dependencies -r0 -lSLF07#2@18"Check dependencies309452513#309452513#0(0"0(0#1#0"8616373504#0"0# - -CCompileC build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o /var/root/Documents/BatchDMG/BatchDMG.m normal x86_64 objective-c com.apple.compilers.gcc.4_2 -s309452515.553554 -e309452515.776537 -r1 -xCompileC -xbuild/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o -x/var/root/Documents/BatchDMG/BatchDMG.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.gcc.4_2 -o/var/root/Documents/BatchDMG/BatchDMG.m: In function '-[Imager observe:]': -o/var/root/Documents/BatchDMG/BatchDMG.m:16: warning: passing argument 1 of 'NSLog' from incompatible pointer type -lSLF07#2@47"Compile /var/root/Documents/BatchDMG/BatchDMG.m309452515#309452515#0(189"/var/root/Documents/BatchDMG/BatchDMG.m: In function '-[Imager observe:]': /var/root/Documents/BatchDMG/BatchDMG.m:16: warning: passing argument 1 of 'NSLog' from incompatible pointer type 1(22@60"Passing argument 1 of 'NSLog' from incompatible pointer type309452515#75#114#0(6@39"/var/root/Documents/BatchDMG/BatchDMG.m309452465#16#0#16#0#56"passing argument * of '*' from incompatible pointer type0(0#0#39"/var/root/Documents/BatchDMG/BatchDMG.m8602928096#1366" cd /var/root/Documents/BatchDMG 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 /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-generated-files.hmap -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-own-target-headers.hmap -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-all-target-headers.hmap -iquote /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-project-headers.hmap -F/var/root/Documents/BatchDMG/build/Debug -I/var/root/Documents/BatchDMG/build/Debug/include -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/DerivedSources/x86_64 -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/DerivedSources -include /var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Caches-/com.apple.Xcode.0/SharedPrecompiledHeaders/BatchDMG_Prefix-cjamafzhdlnszfbhxkkomaoonynb/BatchDMG_Prefix.pch -c /var/root/Documents/BatchDMG/BatchDMG.m -o /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.o 0# - -CLd /var/root/Documents/BatchDMG/build/Debug/BatchDMG normal x86_64 -s309452515.776616 -e309452515.792536 -r0 -xLd -x/var/root/Documents/BatchDMG/build/Debug/BatchDMG -xnormal -xx86_64 -oUndefined symbols: -o "_OBJC_CLASS_$_NSWorkspace", referenced from: -o objc-class-ref-to-NSWorkspace in BatchDMG.o -old: symbol(s) not found -ocollect2: ld returned 1 exit status -lSLF07#2@54"Link /var/root/Documents/BatchDMG/build/Debug/BatchDMG309452515#309452515#0(177"Undefined symbols: "_OBJC_CLASS_$_NSWorkspace", referenced from: objc-class-ref-to-NSWorkspace in BatchDMG.o ld: symbol(s) not found collect2: ld returned 1 exit status 4(4@45""_OBJC_CLASS_$_NSWorkspace", referenced from:309452515#19#48#0(6@0"309452515#0#0#0#0#0"0(13@43"Objc-class-ref-to-NSWorkspace in BatchDMG.o309452515#67#50#0(6@0"309452515#0#0#0#0#0"0(13@19"Symbol(s) not found309452515#117#24#0(6@0"309452515#0#0#0#0#0"0(13@35"Collect2: ld returned 1 exit status309452515#141#36#0(6@0"309452515#0#0#0#0#0"0(0#0#0"8622174688#474" cd /var/root/Documents/BatchDMG setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/gcc-4.2 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/var/root/Documents/BatchDMG/build/Debug -F/var/root/Documents/BatchDMG/build/Debug -filelist /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/Objects-normal/x86_64/BatchDMG.LinkFileList -mmacosx-version-min=10.6 -framework Foundation -o /var/root/Documents/BatchDMG/build/Debug/BatchDMG 1# - -CProcessPCH /var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Caches-/com.apple.Xcode.0/SharedPrecompiledHeaders/BatchDMG_Prefix-cjamafzhdlnszfbhxkkomaoonynb/BatchDMG_Prefix.pch.gch BatchDMG_Prefix.pch normal x86_64 objective-c com.apple.compilers.gcc.4_2 -s309452513.780842 -e309452515.553407 -r1 -xProcessPCH -x/var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Caches-/com.apple.Xcode.0/SharedPrecompiledHeaders/BatchDMG_Prefix-cjamafzhdlnszfbhxkkomaoonynb/BatchDMG_Prefix.pch.gch -xBatchDMG_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.gcc.4_2 -lSLF07#2@30"Precompile BatchDMG_Prefix.pch309452513#309452515#0(0"0(0#0#48"/var/root/Documents/BatchDMG/BatchDMG_Prefix.pch8612246048#1273" cd /var/root/Documents/BatchDMG 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 /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-generated-files.hmap -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-own-target-headers.hmap -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-all-target-headers.hmap -iquote /var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/BatchDMG-project-headers.hmap -F/var/root/Documents/BatchDMG/build/Debug -I/var/root/Documents/BatchDMG/build/Debug/include -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/DerivedSources/x86_64 -I/var/root/Documents/BatchDMG/build/BatchDMG.build/Debug/BatchDMG.build/DerivedSources -c /var/root/Documents/BatchDMG/BatchDMG_Prefix.pch -o /var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Caches-/com.apple.Xcode.0/SharedPrecompiledHeaders/BatchDMG_Prefix-cjamafzhdlnszfbhxkkomaoonynb/BatchDMG_Prefix.pch.gch 0# - diff --git a/build/Debug/BatchDMG b/build/Debug/BatchDMG deleted file mode 100755 index 7856160..0000000 Binary files a/build/Debug/BatchDMG and /dev/null differ -- cgit v1.2.3