├── Resources ├── Spot Color.icns ├── English.lproj │ ├── InfoPlist.strings │ └── MainMenu.xib ├── Credits.rtf └── Info.plist ├── Spot Color.xcodeproj ├── TemplateIcon.icns ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── pd.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcuserdata │ └── pd.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── project.pbxproj ├── src ├── Spot_Color_Prefix.pch ├── AppController.h ├── main.m └── AppController.m └── README /Resources/Spot Color.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xced/SpotColor/HEAD/Resources/Spot Color.icns -------------------------------------------------------------------------------- /Spot Color.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xced/SpotColor/HEAD/Spot Color.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xced/SpotColor/HEAD/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/Spot_Color_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Colors' target in the 'Colors' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /Spot Color.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Spot Color.xcodeproj/project.xcworkspace/xcuserdata/pd.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xced/SpotColor/HEAD/Spot Color.xcodeproj/project.xcworkspace/xcuserdata/pd.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Spot Color is simple mac app to turn the built-in color picker into a stand alone app. Just loads the color panel and configures the window. Other approaches involve creating an AppleScript to open the color picker, but they all seemed really slow. 2 | -------------------------------------------------------------------------------- /src/AppController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppController.h 3 | // Colors 4 | // 5 | // Created by Zach Waugh on 2/17/09. 6 | // Copyright 2009 zachwaugh.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface AppController : NSObject 13 | { 14 | 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /src/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Spot Color 4 | // 5 | // Created by Zach Waugh on 2/17/09. 6 | // Copyright zachwaugh.com 2009. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /Spot Color.xcodeproj/xcuserdata/pd.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Spot Color.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Resources/Credits.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf250 2 | {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} 3 | {\colortbl;\red255\green255\blue255;} 4 | \pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural 5 | 6 | \f0\fs20 \cf0 \ 7 | \ 8 | {\field{\*\fldinst{HYPERLINK "http://zachwaugh.com/projects/spotcolor"}}{\fldrslt http://zachwaugh.com/spotcolor}}\ 9 | \ 10 | \pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\sl288\slmult1\ql\qnatural\pardirnatural 11 | \cf0 Developed by Zach Waugh\ 12 | Icon created by Curt Kotula\ 13 | \pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural 14 | \cf0 \ 15 | \'a9 Zach Waugh 2010} -------------------------------------------------------------------------------- /Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIconFile 10 | Spot Color.icns 11 | CFBundleIdentifier 12 | com.zachwaugh.${PRODUCT_NAME:identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0.2 23 | NSMainNibFile 24 | MainMenu 25 | NSPrincipalClass 26 | NSApplication 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/AppController.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppController.m 3 | // Spot Color 4 | // 5 | // Created by Zach Waugh on 2/17/09. 6 | // Copyright 2009 zachwaugh.com. All rights reserved. 7 | // 8 | 9 | #import "AppController.h" 10 | 11 | @implementation AppController 12 | 13 | - (void)awakeFromNib 14 | { 15 | NSColorPanel *colorPanel = [NSColorPanel sharedColorPanel]; 16 | [colorPanel setTitle:@"Spot Color"]; 17 | [colorPanel setShowsAlpha:YES]; 18 | [colorPanel setDelegate:self]; 19 | [colorPanel setFloatingPanel:[[NSUserDefaults standardUserDefaults] boolForKey:@"floatingPanel"]]; 20 | [colorPanel setHidesOnDeactivate:NO]; 21 | [colorPanel setShowsAlpha:YES]; 22 | [colorPanel makeKeyAndOrderFront:nil]; 23 | [colorPanel bind:@"floatingPanel" toObject:[NSUserDefaultsController sharedUserDefaultsController] withKeyPath:@"values.floatingPanel" options:nil]; 24 | } 25 | 26 | // Make sure app quits after panel is closed 27 | - (void)windowWillClose:(NSNotification *)notification 28 | { 29 | [[NSApplication sharedApplication] terminate:nil]; 30 | } 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /Resources/English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 95 | 96 | 97 | 98 | 99 | 100 | -------------------------------------------------------------------------------- /Spot Color.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 45; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1DDD58160DA1D0A300B32029 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1DDD58140DA1D0A300B32029 /* MainMenu.xib */; }; 11 | 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; 12 | 8D11072D0486CEB800E47090 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; }; 13 | 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; 14 | 92224CD60FF5786F00B1A16F /* Spot Color.icns in Resources */ = {isa = PBXBuildFile; fileRef = 92224CD50FF5786F00B1A16F /* Spot Color.icns */; }; 15 | BF6480691011347600F0D1D2 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = BF6480681011347600F0D1D2 /* Credits.rtf */; }; 16 | BF8B135F0F4B902B00845749 /* AppController.m in Sources */ = {isa = PBXBuildFile; fileRef = BF8B135E0F4B902B00845749 /* AppController.m */; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXCopyFilesBuildPhase section */ 20 | BF08C6240F9D7C42000D98E8 /* CopyFiles */ = { 21 | isa = PBXCopyFilesBuildPhase; 22 | buildActionMask = 2147483647; 23 | dstPath = ""; 24 | dstSubfolderSpec = 7; 25 | files = ( 26 | ); 27 | runOnlyForDeploymentPostprocessing = 0; 28 | }; 29 | /* End PBXCopyFilesBuildPhase section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; 33 | 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; 34 | 13E42FB307B3F0F600E4EEF1 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = ""; }; 35 | 1DDD58150DA1D0A300B32029 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = ""; }; 36 | 29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = src/main.m; sourceTree = ""; }; 37 | 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; 38 | 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; 39 | 32CA4F630368D1EE00C91783 /* Spot_Color_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Spot_Color_Prefix.pch; path = src/Spot_Color_Prefix.pch; sourceTree = ""; }; 40 | 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 41 | 8D1107320486CEB800E47090 /* Spot Color.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Spot Color.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 92224CD50FF5786F00B1A16F /* Spot Color.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = "Spot Color.icns"; sourceTree = ""; }; 43 | BF6480681011347600F0D1D2 /* Credits.rtf */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; path = Credits.rtf; sourceTree = ""; }; 44 | BF8B135D0F4B902B00845749 /* AppController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppController.h; sourceTree = ""; }; 45 | BF8B135E0F4B902B00845749 /* AppController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppController.m; sourceTree = ""; }; 46 | /* End PBXFileReference section */ 47 | 48 | /* Begin PBXFrameworksBuildPhase section */ 49 | 8D11072E0486CEB800E47090 /* Frameworks */ = { 50 | isa = PBXFrameworksBuildPhase; 51 | buildActionMask = 2147483647; 52 | files = ( 53 | 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, 54 | ); 55 | runOnlyForDeploymentPostprocessing = 0; 56 | }; 57 | /* End PBXFrameworksBuildPhase section */ 58 | 59 | /* Begin PBXGroup section */ 60 | 080E96DDFE201D6D7F000001 /* src */ = { 61 | isa = PBXGroup; 62 | children = ( 63 | BF8B135D0F4B902B00845749 /* AppController.h */, 64 | BF8B135E0F4B902B00845749 /* AppController.m */, 65 | ); 66 | path = src; 67 | sourceTree = ""; 68 | }; 69 | 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { 70 | isa = PBXGroup; 71 | children = ( 72 | 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, 73 | ); 74 | name = "Linked Frameworks"; 75 | sourceTree = ""; 76 | }; 77 | 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { 78 | isa = PBXGroup; 79 | children = ( 80 | 29B97324FDCFA39411CA2CEA /* AppKit.framework */, 81 | 13E42FB307B3F0F600E4EEF1 /* CoreData.framework */, 82 | 29B97325FDCFA39411CA2CEA /* Foundation.framework */, 83 | ); 84 | name = "Other Frameworks"; 85 | sourceTree = ""; 86 | }; 87 | 19C28FACFE9D520D11CA2CBB /* Products */ = { 88 | isa = PBXGroup; 89 | children = ( 90 | 8D1107320486CEB800E47090 /* Spot Color.app */, 91 | ); 92 | name = Products; 93 | sourceTree = ""; 94 | }; 95 | 29B97314FDCFA39411CA2CEA /* Colors */ = { 96 | isa = PBXGroup; 97 | children = ( 98 | 080E96DDFE201D6D7F000001 /* src */, 99 | 29B97315FDCFA39411CA2CEA /* Other Sources */, 100 | 29B97317FDCFA39411CA2CEA /* Resources */, 101 | 29B97323FDCFA39411CA2CEA /* Frameworks */, 102 | 19C28FACFE9D520D11CA2CBB /* Products */, 103 | ); 104 | name = Colors; 105 | sourceTree = ""; 106 | }; 107 | 29B97315FDCFA39411CA2CEA /* Other Sources */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | 32CA4F630368D1EE00C91783 /* Spot_Color_Prefix.pch */, 111 | 29B97316FDCFA39411CA2CEA /* main.m */, 112 | ); 113 | name = "Other Sources"; 114 | sourceTree = ""; 115 | }; 116 | 29B97317FDCFA39411CA2CEA /* Resources */ = { 117 | isa = PBXGroup; 118 | children = ( 119 | BF6480681011347600F0D1D2 /* Credits.rtf */, 120 | 92224CD50FF5786F00B1A16F /* Spot Color.icns */, 121 | 8D1107310486CEB800E47090 /* Info.plist */, 122 | 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, 123 | 1DDD58140DA1D0A300B32029 /* MainMenu.xib */, 124 | ); 125 | path = Resources; 126 | sourceTree = ""; 127 | }; 128 | 29B97323FDCFA39411CA2CEA /* Frameworks */ = { 129 | isa = PBXGroup; 130 | children = ( 131 | 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, 132 | 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, 133 | ); 134 | name = Frameworks; 135 | sourceTree = ""; 136 | }; 137 | /* End PBXGroup section */ 138 | 139 | /* Begin PBXNativeTarget section */ 140 | 8D1107260486CEB800E47090 /* Spot Color */ = { 141 | isa = PBXNativeTarget; 142 | buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "Spot Color" */; 143 | buildPhases = ( 144 | 8D1107290486CEB800E47090 /* Resources */, 145 | 8D11072C0486CEB800E47090 /* Sources */, 146 | 8D11072E0486CEB800E47090 /* Frameworks */, 147 | BF08C6240F9D7C42000D98E8 /* CopyFiles */, 148 | ); 149 | buildRules = ( 150 | ); 151 | dependencies = ( 152 | ); 153 | name = "Spot Color"; 154 | productInstallPath = "$(HOME)/Applications"; 155 | productName = Colors; 156 | productReference = 8D1107320486CEB800E47090 /* Spot Color.app */; 157 | productType = "com.apple.product-type.application"; 158 | }; 159 | /* End PBXNativeTarget section */ 160 | 161 | /* Begin PBXProject section */ 162 | 29B97313FDCFA39411CA2CEA /* Project object */ = { 163 | isa = PBXProject; 164 | attributes = { 165 | }; 166 | buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Spot Color" */; 167 | compatibilityVersion = "Xcode 3.1"; 168 | developmentRegion = English; 169 | hasScannedForEncodings = 1; 170 | knownRegions = ( 171 | English, 172 | Japanese, 173 | French, 174 | German, 175 | Italian, 176 | Spanish, 177 | Swedish, 178 | zh_TW, 179 | ); 180 | mainGroup = 29B97314FDCFA39411CA2CEA /* Colors */; 181 | projectDirPath = ""; 182 | projectRoot = ""; 183 | targets = ( 184 | 8D1107260486CEB800E47090 /* Spot Color */, 185 | ); 186 | }; 187 | /* End PBXProject section */ 188 | 189 | /* Begin PBXResourcesBuildPhase section */ 190 | 8D1107290486CEB800E47090 /* Resources */ = { 191 | isa = PBXResourcesBuildPhase; 192 | buildActionMask = 2147483647; 193 | files = ( 194 | 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, 195 | 1DDD58160DA1D0A300B32029 /* MainMenu.xib in Resources */, 196 | 92224CD60FF5786F00B1A16F /* Spot Color.icns in Resources */, 197 | BF6480691011347600F0D1D2 /* Credits.rtf in Resources */, 198 | ); 199 | runOnlyForDeploymentPostprocessing = 0; 200 | }; 201 | /* End PBXResourcesBuildPhase section */ 202 | 203 | /* Begin PBXSourcesBuildPhase section */ 204 | 8D11072C0486CEB800E47090 /* Sources */ = { 205 | isa = PBXSourcesBuildPhase; 206 | buildActionMask = 2147483647; 207 | files = ( 208 | 8D11072D0486CEB800E47090 /* main.m in Sources */, 209 | BF8B135F0F4B902B00845749 /* AppController.m in Sources */, 210 | ); 211 | runOnlyForDeploymentPostprocessing = 0; 212 | }; 213 | /* End PBXSourcesBuildPhase section */ 214 | 215 | /* Begin PBXVariantGroup section */ 216 | 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { 217 | isa = PBXVariantGroup; 218 | children = ( 219 | 089C165DFE840E0CC02AAC07 /* English */, 220 | ); 221 | name = InfoPlist.strings; 222 | sourceTree = ""; 223 | }; 224 | 1DDD58140DA1D0A300B32029 /* MainMenu.xib */ = { 225 | isa = PBXVariantGroup; 226 | children = ( 227 | 1DDD58150DA1D0A300B32029 /* English */, 228 | ); 229 | name = MainMenu.xib; 230 | sourceTree = ""; 231 | }; 232 | /* End PBXVariantGroup section */ 233 | 234 | /* Begin XCBuildConfiguration section */ 235 | C01FCF4B08A954540054247B /* Debug */ = { 236 | isa = XCBuildConfiguration; 237 | buildSettings = { 238 | ALWAYS_SEARCH_USER_PATHS = NO; 239 | COPY_PHASE_STRIP = NO; 240 | GCC_DYNAMIC_NO_PIC = NO; 241 | GCC_ENABLE_FIX_AND_CONTINUE = YES; 242 | GCC_MODEL_TUNING = G5; 243 | GCC_OPTIMIZATION_LEVEL = 0; 244 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 245 | GCC_PREFIX_HEADER = src/Spot_Color_Prefix.pch; 246 | INFOPLIST_FILE = Resources/Info.plist; 247 | INSTALL_PATH = "$(HOME)/Applications"; 248 | MACOSX_DEPLOYMENT_TARGET = 10.14; 249 | PRODUCT_NAME = "Spot Color"; 250 | }; 251 | name = Debug; 252 | }; 253 | C01FCF4C08A954540054247B /* Release */ = { 254 | isa = XCBuildConfiguration; 255 | buildSettings = { 256 | ALWAYS_SEARCH_USER_PATHS = NO; 257 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 258 | GCC_MODEL_TUNING = G5; 259 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 260 | GCC_PREFIX_HEADER = src/Spot_Color_Prefix.pch; 261 | INFOPLIST_FILE = Resources/Info.plist; 262 | INSTALL_PATH = "$(HOME)/Applications"; 263 | MACOSX_DEPLOYMENT_TARGET = 10.14; 264 | PRODUCT_NAME = "Spot Color"; 265 | }; 266 | name = Release; 267 | }; 268 | C01FCF4F08A954540054247B /* Debug */ = { 269 | isa = XCBuildConfiguration; 270 | buildSettings = { 271 | ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; 272 | GCC_C_LANGUAGE_STANDARD = c99; 273 | GCC_OPTIMIZATION_LEVEL = 0; 274 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 275 | GCC_WARN_UNUSED_VARIABLE = YES; 276 | MACOSX_DEPLOYMENT_TARGET = 10.5; 277 | ONLY_ACTIVE_ARCH = YES; 278 | PREBINDING = NO; 279 | SDKROOT = macosx; 280 | }; 281 | name = Debug; 282 | }; 283 | C01FCF5008A954540054247B /* Release */ = { 284 | isa = XCBuildConfiguration; 285 | buildSettings = { 286 | ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; 287 | GCC_C_LANGUAGE_STANDARD = c99; 288 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 289 | GCC_WARN_UNUSED_VARIABLE = YES; 290 | MACOSX_DEPLOYMENT_TARGET = 10.5; 291 | PREBINDING = NO; 292 | SDKROOT = macosx; 293 | }; 294 | name = Release; 295 | }; 296 | /* End XCBuildConfiguration section */ 297 | 298 | /* Begin XCConfigurationList section */ 299 | C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "Spot Color" */ = { 300 | isa = XCConfigurationList; 301 | buildConfigurations = ( 302 | C01FCF4B08A954540054247B /* Debug */, 303 | C01FCF4C08A954540054247B /* Release */, 304 | ); 305 | defaultConfigurationIsVisible = 0; 306 | defaultConfigurationName = Release; 307 | }; 308 | C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Spot Color" */ = { 309 | isa = XCConfigurationList; 310 | buildConfigurations = ( 311 | C01FCF4F08A954540054247B /* Debug */, 312 | C01FCF5008A954540054247B /* Release */, 313 | ); 314 | defaultConfigurationIsVisible = 0; 315 | defaultConfigurationName = Release; 316 | }; 317 | /* End XCConfigurationList section */ 318 | }; 319 | rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; 320 | } 321 | --------------------------------------------------------------------------------