diff options
| author | Michal Kottman <michal.kottman@gmail.com> | 2011-01-08 01:28:57 +0100 |
|---|---|---|
| committer | Michal Kottman <michal.kottman@gmail.com> | 2011-01-08 01:28:57 +0100 |
| commit | faf69a1397176076829eaa6cecbf131ee17e78ee (patch) | |
| tree | 25fa957f8286ed835b1e61a6a9c86f9e8418c381 | |
| parent | 79e46938c5d8daf164ab2d934f668fa27b32e4cf (diff) | |
| download | lanes-faf69a1397176076829eaa6cecbf131ee17e78ee.tar.gz lanes-faf69a1397176076829eaa6cecbf131ee17e78ee.tar.bz2 lanes-faf69a1397176076829eaa6cecbf131ee17e78ee.zip | |
Cleanup
| -rw-r--r-- | lanes-2.0-2.rockspec | 95 | ||||
| -rw-r--r-- | lanes-2.0.2.tgz | bin | 312965 -> 0 bytes | |||
| -rw-r--r-- | xcode/xcode.xcodeproj/abisoft.mode1 | 1460 | ||||
| -rw-r--r-- | xcode/xcode.xcodeproj/abisoft.pbxuser | 411 | ||||
| -rw-r--r-- | xcode/xcode.xcodeproj/project.pbxproj | 268 | ||||
| -rw-r--r-- | xcode/xcode.xcodeproj/soumya.pbxuser | 124 |
6 files changed, 0 insertions, 2358 deletions
diff --git a/lanes-2.0-2.rockspec b/lanes-2.0-2.rockspec deleted file mode 100644 index 407a622..0000000 --- a/lanes-2.0-2.rockspec +++ /dev/null | |||
| @@ -1,95 +0,0 @@ | |||
| 1 | -- | ||
| 2 | -- Lanes rockspec | ||
| 3 | -- | ||
| 4 | -- Ref: | ||
| 5 | -- <http://luarocks.org/en/Rockspec_format> | ||
| 6 | -- | ||
| 7 | -- History: | ||
| 8 | -- AKa 1-Sep-2008: 2.0-2 (NOT sent to list): fixed VC++ not finding DLL issue | ||
| 9 | -- AKa 20-Aug-2008: 2.0-1 sent to luarocks-developers | ||
| 10 | -- | ||
| 11 | |||
| 12 | package = "Lanes" | ||
| 13 | |||
| 14 | version = "2.0-2" | ||
| 15 | |||
| 16 | source= { | ||
| 17 | url= "http://akauppi.googlepages.com/lanes-2.0.tgz", | ||
| 18 | md5= "27a807828de0bda3787dbcd2d4947019" | ||
| 19 | } | ||
| 20 | |||
| 21 | description = { | ||
| 22 | summary= "Multithreading support for Lua", | ||
| 23 | detailed= [[ | ||
| 24 | Lua Lanes is a portable, message passing multithreading library | ||
| 25 | providing the possibility to run multiple Lua states in parallel. | ||
| 26 | ]], | ||
| 27 | license= "MIT/X11", | ||
| 28 | homepage="http://kotisivu.dnainternet.net/askok/lanes/", | ||
| 29 | maintainer="Asko Kauppi <akauppi@gmail.com>" | ||
| 30 | } | ||
| 31 | |||
| 32 | -- Q: What is the difference of "windows" and "win32"? Seems there is none; | ||
| 33 | -- so should we list either one or both? | ||
| 34 | -- | ||
| 35 | supported_platforms= { "win32", | ||
| 36 | "macosx", | ||
| 37 | "linux", | ||
| 38 | "freebsd", -- TBD: not tested | ||
| 39 | "msys", -- TBD: not supported by LuaRocks 1.0 (or is it?) | ||
| 40 | } | ||
| 41 | |||
| 42 | dependencies= { | ||
| 43 | "lua >= 5.1, < 5.2", | ||
| 44 | } | ||
| 45 | |||
| 46 | -- | ||
| 47 | -- Non-Win32: build using the Makefile | ||
| 48 | -- Win32: build using 'make-vc.cmd' and "manual" copy of products | ||
| 49 | -- | ||
| 50 | -- TBD: How is MSYS treated? We'd like (really) it to use the Makefile. | ||
| 51 | -- It should be a target like "cygwin", not defining "windows". | ||
| 52 | -- "windows" should actually guarantee Visual C++ as the compiler. | ||
| 53 | -- | ||
| 54 | -- Q: Does "win32" guarantee we have Visual C++ 2005/2008 command line tools? | ||
| 55 | -- | ||
| 56 | -- Note: Cannot use the simple "module" build type, because we need to precompile | ||
| 57 | -- 'src/keeper.lua' -> keeper.lch and bake it into lanes.c. | ||
| 58 | -- | ||
| 59 | build = { | ||
| 60 | |||
| 61 | -- Win32 (Visual C++) uses 'make-vc.cmd' for building | ||
| 62 | -- | ||
| 63 | platforms= { | ||
| 64 | windows= { | ||
| 65 | type= "command", | ||
| 66 | build_command= "make-vc.cmd", | ||
| 67 | install= { | ||
| 68 | lua = { "src/lanes.lua" }, | ||
| 69 | lib = { "lua51-lanes.dll" } | ||
| 70 | } | ||
| 71 | } | ||
| 72 | }, | ||
| 73 | |||
| 74 | -- Other platforms use the Makefile | ||
| 75 | -- | ||
| 76 | -- LuaRocks defines CFLAGS, LIBFLAG and LUA_INCDIR for 'make rock', | ||
| 77 | -- defines LIBDIR, LUADIR for 'make install' | ||
| 78 | -- | ||
| 79 | -- Ref: <http://www.luarocks.org/en/Paths_and_external_dependencies> | ||
| 80 | -- | ||
| 81 | type = "make", | ||
| 82 | |||
| 83 | build_target = "rock", | ||
| 84 | build_variables= { | ||
| 85 | CFLAGS= "$(CFLAGS) -I$(LUA_INCDIR)", | ||
| 86 | LIBFLAG= "$(LIBFLAG)", | ||
| 87 | }, | ||
| 88 | |||
| 89 | install_target = "install", | ||
| 90 | install_variables= { | ||
| 91 | LUA_LIBDIR= "$(LIBDIR)", | ||
| 92 | LUA_SHAREDIR= "$(LUADIR)", | ||
| 93 | } | ||
| 94 | } | ||
| 95 | |||
diff --git a/lanes-2.0.2.tgz b/lanes-2.0.2.tgz deleted file mode 100644 index 666de3b..0000000 --- a/lanes-2.0.2.tgz +++ /dev/null | |||
| Binary files differ | |||
diff --git a/xcode/xcode.xcodeproj/abisoft.mode1 b/xcode/xcode.xcodeproj/abisoft.mode1 deleted file mode 100644 index 569158d..0000000 --- a/xcode/xcode.xcodeproj/abisoft.mode1 +++ /dev/null | |||
| @@ -1,1460 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
| 3 | <plist version="1.0"> | ||
| 4 | <dict> | ||
| 5 | <key>ActivePerspectiveName</key> | ||
| 6 | <string>Project</string> | ||
| 7 | <key>AllowedModules</key> | ||
| 8 | <array> | ||
| 9 | <dict> | ||
| 10 | <key>BundleLoadPath</key> | ||
| 11 | <string></string> | ||
| 12 | <key>MaxInstances</key> | ||
| 13 | <string>n</string> | ||
| 14 | <key>Module</key> | ||
| 15 | <string>PBXSmartGroupTreeModule</string> | ||
| 16 | <key>Name</key> | ||
| 17 | <string>Groups and Files Outline View</string> | ||
| 18 | </dict> | ||
| 19 | <dict> | ||
| 20 | <key>BundleLoadPath</key> | ||
| 21 | <string></string> | ||
| 22 | <key>MaxInstances</key> | ||
| 23 | <string>n</string> | ||
| 24 | <key>Module</key> | ||
| 25 | <string>PBXNavigatorGroup</string> | ||
| 26 | <key>Name</key> | ||
| 27 | <string>Editor</string> | ||
| 28 | </dict> | ||
| 29 | <dict> | ||
| 30 | <key>BundleLoadPath</key> | ||
| 31 | <string></string> | ||
| 32 | <key>MaxInstances</key> | ||
| 33 | <string>n</string> | ||
| 34 | <key>Module</key> | ||
| 35 | <string>XCTaskListModule</string> | ||
| 36 | <key>Name</key> | ||
| 37 | <string>Task List</string> | ||
| 38 | </dict> | ||
| 39 | <dict> | ||
| 40 | <key>BundleLoadPath</key> | ||
| 41 | <string></string> | ||
| 42 | <key>MaxInstances</key> | ||
| 43 | <string>n</string> | ||
| 44 | <key>Module</key> | ||
| 45 | <string>XCDetailModule</string> | ||
| 46 | <key>Name</key> | ||
| 47 | <string>File and Smart Group Detail Viewer</string> | ||
| 48 | </dict> | ||
| 49 | <dict> | ||
| 50 | <key>BundleLoadPath</key> | ||
| 51 | <string></string> | ||
| 52 | <key>MaxInstances</key> | ||
| 53 | <string>1</string> | ||
| 54 | <key>Module</key> | ||
| 55 | <string>PBXBuildResultsModule</string> | ||
| 56 | <key>Name</key> | ||
| 57 | <string>Detailed Build Results Viewer</string> | ||
| 58 | </dict> | ||
| 59 | <dict> | ||
| 60 | <key>BundleLoadPath</key> | ||
| 61 | <string></string> | ||
| 62 | <key>MaxInstances</key> | ||
| 63 | <string>1</string> | ||
| 64 | <key>Module</key> | ||
| 65 | <string>PBXProjectFindModule</string> | ||
| 66 | <key>Name</key> | ||
| 67 | <string>Project Batch Find Tool</string> | ||
| 68 | </dict> | ||
| 69 | <dict> | ||
| 70 | <key>BundleLoadPath</key> | ||
| 71 | <string></string> | ||
| 72 | <key>MaxInstances</key> | ||
| 73 | <string>n</string> | ||
| 74 | <key>Module</key> | ||
| 75 | <string>PBXRunSessionModule</string> | ||
| 76 | <key>Name</key> | ||
| 77 | <string>Run Log</string> | ||
| 78 | </dict> | ||
| 79 | <dict> | ||
| 80 | <key>BundleLoadPath</key> | ||
| 81 | <string></string> | ||
| 82 | <key>MaxInstances</key> | ||
| 83 | <string>n</string> | ||
| 84 | <key>Module</key> | ||
| 85 | <string>PBXBookmarksModule</string> | ||
| 86 | <key>Name</key> | ||
| 87 | <string>Bookmarks Tool</string> | ||
| 88 | </dict> | ||
| 89 | <dict> | ||
| 90 | <key>BundleLoadPath</key> | ||
| 91 | <string></string> | ||
| 92 | <key>MaxInstances</key> | ||
| 93 | <string>n</string> | ||
| 94 | <key>Module</key> | ||
| 95 | <string>PBXClassBrowserModule</string> | ||
| 96 | <key>Name</key> | ||
| 97 | <string>Class Browser</string> | ||
| 98 | </dict> | ||
| 99 | <dict> | ||
| 100 | <key>BundleLoadPath</key> | ||
| 101 | <string></string> | ||
| 102 | <key>MaxInstances</key> | ||
| 103 | <string>n</string> | ||
| 104 | <key>Module</key> | ||
| 105 | <string>PBXCVSModule</string> | ||
| 106 | <key>Name</key> | ||
| 107 | <string>Source Code Control Tool</string> | ||
| 108 | </dict> | ||
| 109 | <dict> | ||
| 110 | <key>BundleLoadPath</key> | ||
| 111 | <string></string> | ||
| 112 | <key>MaxInstances</key> | ||
| 113 | <string>n</string> | ||
| 114 | <key>Module</key> | ||
| 115 | <string>PBXDebugBreakpointsModule</string> | ||
| 116 | <key>Name</key> | ||
| 117 | <string>Debug Breakpoints Tool</string> | ||
| 118 | </dict> | ||
| 119 | <dict> | ||
| 120 | <key>BundleLoadPath</key> | ||
| 121 | <string></string> | ||
| 122 | <key>MaxInstances</key> | ||
| 123 | <string>n</string> | ||
| 124 | <key>Module</key> | ||
| 125 | <string>XCDockableInspector</string> | ||
| 126 | <key>Name</key> | ||
| 127 | <string>Inspector</string> | ||
| 128 | </dict> | ||
| 129 | <dict> | ||
| 130 | <key>BundleLoadPath</key> | ||
| 131 | <string></string> | ||
| 132 | <key>MaxInstances</key> | ||
| 133 | <string>n</string> | ||
| 134 | <key>Module</key> | ||
| 135 | <string>PBXOpenQuicklyModule</string> | ||
| 136 | <key>Name</key> | ||
| 137 | <string>Open Quickly Tool</string> | ||
| 138 | </dict> | ||
| 139 | <dict> | ||
| 140 | <key>BundleLoadPath</key> | ||
| 141 | <string></string> | ||
| 142 | <key>MaxInstances</key> | ||
| 143 | <string>1</string> | ||
| 144 | <key>Module</key> | ||
| 145 | <string>PBXDebugSessionModule</string> | ||
| 146 | <key>Name</key> | ||
| 147 | <string>Debugger</string> | ||
| 148 | </dict> | ||
| 149 | <dict> | ||
| 150 | <key>BundleLoadPath</key> | ||
| 151 | <string></string> | ||
| 152 | <key>MaxInstances</key> | ||
| 153 | <string>1</string> | ||
| 154 | <key>Module</key> | ||
| 155 | <string>PBXDebugCLIModule</string> | ||
| 156 | <key>Name</key> | ||
| 157 | <string>Debug Console</string> | ||
| 158 | </dict> | ||
| 159 | </array> | ||
| 160 | <key>Description</key> | ||
| 161 | <string>DefaultDescriptionKey</string> | ||
| 162 | <key>DockingSystemVisible</key> | ||
| 163 | <false/> | ||
| 164 | <key>Extension</key> | ||
| 165 | <string>mode1</string> | ||
| 166 | <key>FavBarConfig</key> | ||
| 167 | <dict> | ||
| 168 | <key>PBXProjectModuleGUID</key> | ||
| 169 | <string>27602E5F0C2F36D60086E627</string> | ||
| 170 | <key>XCBarModuleItemNames</key> | ||
| 171 | <dict/> | ||
| 172 | <key>XCBarModuleItems</key> | ||
| 173 | <array/> | ||
| 174 | </dict> | ||
| 175 | <key>FirstTimeWindowDisplayed</key> | ||
| 176 | <false/> | ||
| 177 | <key>Identifier</key> | ||
| 178 | <string>com.apple.perspectives.project.mode1</string> | ||
| 179 | <key>MajorVersion</key> | ||
| 180 | <integer>31</integer> | ||
| 181 | <key>MinorVersion</key> | ||
| 182 | <integer>1</integer> | ||
| 183 | <key>Name</key> | ||
| 184 | <string>Default</string> | ||
| 185 | <key>Notifications</key> | ||
| 186 | <array> | ||
| 187 | <dict> | ||
| 188 | <key>XCObserverAutoDisconnectKey</key> | ||
| 189 | <true/> | ||
| 190 | <key>XCObserverDefintionKey</key> | ||
| 191 | <dict/> | ||
| 192 | <key>XCObserverFactoryKey</key> | ||
| 193 | <string>XCPerspectivesSpecificationIdentifier</string> | ||
| 194 | <key>XCObserverGUIDKey</key> | ||
| 195 | <string>XCObserverProjectIdentifier</string> | ||
| 196 | <key>XCObserverNotificationKey</key> | ||
| 197 | <string>PBXStatusBuildStateMessageNotification</string> | ||
| 198 | <key>XCObserverTargetKey</key> | ||
| 199 | <string>XCMainBuildResultsModuleGUID</string> | ||
| 200 | <key>XCObserverTriggerKey</key> | ||
| 201 | <string>awakenModuleWithObserver:</string> | ||
| 202 | <key>XCObserverValidationKey</key> | ||
| 203 | <dict/> | ||
| 204 | </dict> | ||
| 205 | </array> | ||
| 206 | <key>OpenEditors</key> | ||
| 207 | <array> | ||
| 208 | <dict> | ||
| 209 | <key>Content</key> | ||
| 210 | <dict> | ||
| 211 | <key>PBXProjectModuleGUID</key> | ||
| 212 | <string>2784DBE60CD6544900B13CF3</string> | ||
| 213 | <key>PBXProjectModuleLabel</key> | ||
| 214 | <string>gluax_static.c</string> | ||
| 215 | <key>PBXSplitModuleInNavigatorKey</key> | ||
| 216 | <dict> | ||
| 217 | <key>Split0</key> | ||
| 218 | <dict> | ||
| 219 | <key>PBXProjectModuleGUID</key> | ||
| 220 | <string>2784DBE70CD6544900B13CF3</string> | ||
| 221 | <key>PBXProjectModuleLabel</key> | ||
| 222 | <string>gluax_static.c</string> | ||
| 223 | <key>_historyCapacity</key> | ||
| 224 | <integer>0</integer> | ||
| 225 | <key>bookmark</key> | ||
| 226 | <string>2736316D0CD721CA00A12F3E</string> | ||
| 227 | <key>history</key> | ||
| 228 | <array> | ||
| 229 | <string>27F8E2020CD71E630081A54F</string> | ||
| 230 | </array> | ||
| 231 | </dict> | ||
| 232 | <key>SplitCount</key> | ||
| 233 | <string>1</string> | ||
| 234 | </dict> | ||
| 235 | <key>StatusBarVisibility</key> | ||
| 236 | <true/> | ||
| 237 | </dict> | ||
| 238 | <key>Geometry</key> | ||
| 239 | <dict> | ||
| 240 | <key>Frame</key> | ||
| 241 | <string>{{0, 20}, {1057, 709}}</string> | ||
| 242 | <key>PBXModuleWindowStatusBarHidden2</key> | ||
| 243 | <false/> | ||
| 244 | <key>RubberWindowFrame</key> | ||
| 245 | <string>349 236 1057 750 0 0 1680 1028 </string> | ||
| 246 | </dict> | ||
| 247 | </dict> | ||
| 248 | <dict> | ||
| 249 | <key>Content</key> | ||
| 250 | <dict> | ||
| 251 | <key>PBXProjectModuleGUID</key> | ||
| 252 | <string>27F6DA310C4416540054E42A</string> | ||
| 253 | <key>PBXProjectModuleLabel</key> | ||
| 254 | <string>gluax.c</string> | ||
| 255 | <key>PBXSplitModuleInNavigatorKey</key> | ||
| 256 | <dict> | ||
| 257 | <key>Split0</key> | ||
| 258 | <dict> | ||
| 259 | <key>PBXProjectModuleGUID</key> | ||
| 260 | <string>27F6DA320C4416540054E42A</string> | ||
| 261 | <key>PBXProjectModuleLabel</key> | ||
| 262 | <string>gluax.c</string> | ||
| 263 | <key>_historyCapacity</key> | ||
| 264 | <integer>0</integer> | ||
| 265 | <key>bookmark</key> | ||
| 266 | <string>2736316E0CD721CA00A12F3E</string> | ||
| 267 | <key>history</key> | ||
| 268 | <array> | ||
| 269 | <string>27F8E2030CD71E630081A54F</string> | ||
| 270 | </array> | ||
| 271 | </dict> | ||
| 272 | <key>SplitCount</key> | ||
| 273 | <string>1</string> | ||
| 274 | </dict> | ||
| 275 | <key>StatusBarVisibility</key> | ||
| 276 | <true/> | ||
| 277 | </dict> | ||
| 278 | <key>Geometry</key> | ||
| 279 | <dict> | ||
| 280 | <key>Frame</key> | ||
| 281 | <string>{{0, 20}, {1057, 709}}</string> | ||
| 282 | <key>PBXModuleWindowStatusBarHidden2</key> | ||
| 283 | <false/> | ||
| 284 | <key>RubberWindowFrame</key> | ||
| 285 | <string>540 110 1057 750 0 0 1680 1028 </string> | ||
| 286 | </dict> | ||
| 287 | </dict> | ||
| 288 | </array> | ||
| 289 | <key>PerspectiveWidths</key> | ||
| 290 | <array> | ||
| 291 | <integer>-1</integer> | ||
| 292 | <integer>-1</integer> | ||
| 293 | </array> | ||
| 294 | <key>Perspectives</key> | ||
| 295 | <array> | ||
| 296 | <dict> | ||
| 297 | <key>ChosenToolbarItems</key> | ||
| 298 | <array> | ||
| 299 | <string>active-target-popup</string> | ||
| 300 | <string>active-buildstyle-popup</string> | ||
| 301 | <string>action</string> | ||
| 302 | <string>NSToolbarFlexibleSpaceItem</string> | ||
| 303 | <string>buildOrClean</string> | ||
| 304 | <string>build-and-runOrDebug</string> | ||
| 305 | <string>com.apple.ide.PBXToolbarStopButton</string> | ||
| 306 | <string>get-info</string> | ||
| 307 | <string>toggle-editor</string> | ||
| 308 | <string>NSToolbarFlexibleSpaceItem</string> | ||
| 309 | <string>com.apple.pbx.toolbar.searchfield</string> | ||
| 310 | </array> | ||
| 311 | <key>ControllerClassBaseName</key> | ||
| 312 | <string></string> | ||
| 313 | <key>IconName</key> | ||
| 314 | <string>WindowOfProjectWithEditor</string> | ||
| 315 | <key>Identifier</key> | ||
| 316 | <string>perspective.project</string> | ||
| 317 | <key>IsVertical</key> | ||
| 318 | <false/> | ||
| 319 | <key>Layout</key> | ||
| 320 | <array> | ||
| 321 | <dict> | ||
| 322 | <key>BecomeActive</key> | ||
| 323 | <true/> | ||
| 324 | <key>ContentConfiguration</key> | ||
| 325 | <dict> | ||
| 326 | <key>PBXBottomSmartGroupGIDs</key> | ||
| 327 | <array> | ||
| 328 | <string>1C37FBAC04509CD000000102</string> | ||
| 329 | <string>1C37FAAC04509CD000000102</string> | ||
| 330 | <string>1C08E77C0454961000C914BD</string> | ||
| 331 | <string>1C37FABC05509CD000000102</string> | ||
| 332 | <string>1C37FABC05539CD112110102</string> | ||
| 333 | <string>E2644B35053B69B200211256</string> | ||
| 334 | <string>1C37FABC04509CD000100104</string> | ||
| 335 | <string>1CC0EA4004350EF90044410B</string> | ||
| 336 | <string>1CC0EA4004350EF90041110B</string> | ||
| 337 | </array> | ||
| 338 | <key>PBXProjectModuleGUID</key> | ||
| 339 | <string>1CE0B1FE06471DED0097A5F4</string> | ||
| 340 | <key>PBXProjectModuleLabel</key> | ||
| 341 | <string>Files</string> | ||
| 342 | <key>PBXProjectStructureProvided</key> | ||
| 343 | <string>yes</string> | ||
| 344 | <key>PBXSmartGroupTreeModuleColumnData</key> | ||
| 345 | <dict> | ||
| 346 | <key>PBXSmartGroupTreeModuleColumnWidthsKey</key> | ||
| 347 | <array> | ||
| 348 | <real>186</real> | ||
| 349 | </array> | ||
| 350 | <key>PBXSmartGroupTreeModuleColumnsKey_v4</key> | ||
| 351 | <array> | ||
| 352 | <string>MainColumn</string> | ||
| 353 | </array> | ||
| 354 | </dict> | ||
| 355 | <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key> | ||
| 356 | <dict> | ||
| 357 | <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key> | ||
| 358 | <array> | ||
| 359 | <string>08FB7794FE84155DC02AAC07</string> | ||
| 360 | <string>1AB674ADFE9D54B511CA2CBB</string> | ||
| 361 | <string>1C37FBAC04509CD000000102</string> | ||
| 362 | <string>1C37FAAC04509CD000000102</string> | ||
| 363 | <string>1C37FABC05509CD000000102</string> | ||
| 364 | </array> | ||
| 365 | <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key> | ||
| 366 | <array> | ||
| 367 | <array> | ||
| 368 | <integer>12</integer> | ||
| 369 | </array> | ||
| 370 | </array> | ||
| 371 | <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> | ||
| 372 | <string>{{0, 0}, {186, 503}}</string> | ||
| 373 | </dict> | ||
| 374 | <key>PBXTopSmartGroupGIDs</key> | ||
| 375 | <array/> | ||
| 376 | <key>XCIncludePerspectivesSwitch</key> | ||
| 377 | <true/> | ||
| 378 | <key>XCSharingToken</key> | ||
| 379 | <string>com.apple.Xcode.GFSharingToken</string> | ||
| 380 | </dict> | ||
| 381 | <key>GeometryConfiguration</key> | ||
| 382 | <dict> | ||
| 383 | <key>Frame</key> | ||
| 384 | <string>{{0, 0}, {203, 521}}</string> | ||
| 385 | <key>GroupTreeTableConfiguration</key> | ||
| 386 | <array> | ||
| 387 | <string>MainColumn</string> | ||
| 388 | <real>186</real> | ||
| 389 | </array> | ||
| 390 | <key>RubberWindowFrame</key> | ||
| 391 | <string>243 337 880 562 0 0 1680 1028 </string> | ||
| 392 | </dict> | ||
| 393 | <key>Module</key> | ||
| 394 | <string>PBXSmartGroupTreeModule</string> | ||
| 395 | <key>Proportion</key> | ||
| 396 | <string>203pt</string> | ||
| 397 | </dict> | ||
| 398 | <dict> | ||
| 399 | <key>Dock</key> | ||
| 400 | <array> | ||
| 401 | <dict> | ||
| 402 | <key>ContentConfiguration</key> | ||
| 403 | <dict> | ||
| 404 | <key>PBXProjectModuleGUID</key> | ||
| 405 | <string>1CE0B20306471E060097A5F4</string> | ||
| 406 | <key>PBXProjectModuleLabel</key> | ||
| 407 | <string>MyNewFile14.java</string> | ||
| 408 | <key>PBXSplitModuleInNavigatorKey</key> | ||
| 409 | <dict> | ||
| 410 | <key>Split0</key> | ||
| 411 | <dict> | ||
| 412 | <key>PBXProjectModuleGUID</key> | ||
| 413 | <string>1CE0B20406471E060097A5F4</string> | ||
| 414 | <key>PBXProjectModuleLabel</key> | ||
| 415 | <string>MyNewFile14.java</string> | ||
| 416 | </dict> | ||
| 417 | <key>SplitCount</key> | ||
| 418 | <string>1</string> | ||
| 419 | </dict> | ||
| 420 | <key>StatusBarVisibility</key> | ||
| 421 | <true/> | ||
| 422 | </dict> | ||
| 423 | <key>GeometryConfiguration</key> | ||
| 424 | <dict> | ||
| 425 | <key>Frame</key> | ||
| 426 | <string>{{0, 0}, {672, 0}}</string> | ||
| 427 | <key>RubberWindowFrame</key> | ||
| 428 | <string>243 337 880 562 0 0 1680 1028 </string> | ||
| 429 | </dict> | ||
| 430 | <key>Module</key> | ||
| 431 | <string>PBXNavigatorGroup</string> | ||
| 432 | <key>Proportion</key> | ||
| 433 | <string>0pt</string> | ||
| 434 | </dict> | ||
| 435 | <dict> | ||
| 436 | <key>ContentConfiguration</key> | ||
| 437 | <dict> | ||
| 438 | <key>PBXProjectModuleGUID</key> | ||
| 439 | <string>1CE0B20506471E060097A5F4</string> | ||
| 440 | <key>PBXProjectModuleLabel</key> | ||
| 441 | <string>Detail</string> | ||
| 442 | </dict> | ||
| 443 | <key>GeometryConfiguration</key> | ||
| 444 | <dict> | ||
| 445 | <key>Frame</key> | ||
| 446 | <string>{{0, 5}, {672, 516}}</string> | ||
| 447 | <key>RubberWindowFrame</key> | ||
| 448 | <string>243 337 880 562 0 0 1680 1028 </string> | ||
| 449 | </dict> | ||
| 450 | <key>Module</key> | ||
| 451 | <string>XCDetailModule</string> | ||
| 452 | <key>Proportion</key> | ||
| 453 | <string>516pt</string> | ||
| 454 | </dict> | ||
| 455 | </array> | ||
| 456 | <key>Proportion</key> | ||
| 457 | <string>672pt</string> | ||
| 458 | </dict> | ||
| 459 | </array> | ||
| 460 | <key>Name</key> | ||
| 461 | <string>Project</string> | ||
| 462 | <key>ServiceClasses</key> | ||
| 463 | <array> | ||
| 464 | <string>XCModuleDock</string> | ||
| 465 | <string>PBXSmartGroupTreeModule</string> | ||
| 466 | <string>XCModuleDock</string> | ||
| 467 | <string>PBXNavigatorGroup</string> | ||
| 468 | <string>XCDetailModule</string> | ||
| 469 | </array> | ||
| 470 | <key>TableOfContents</key> | ||
| 471 | <array> | ||
| 472 | <string>2736315A0CD71F3400A12F3E</string> | ||
| 473 | <string>1CE0B1FE06471DED0097A5F4</string> | ||
| 474 | <string>2736315B0CD71F3400A12F3E</string> | ||
| 475 | <string>1CE0B20306471E060097A5F4</string> | ||
| 476 | <string>1CE0B20506471E060097A5F4</string> | ||
| 477 | </array> | ||
| 478 | <key>ToolbarConfiguration</key> | ||
| 479 | <string>xcode.toolbar.config.default</string> | ||
| 480 | </dict> | ||
| 481 | <dict> | ||
| 482 | <key>ControllerClassBaseName</key> | ||
| 483 | <string></string> | ||
| 484 | <key>IconName</key> | ||
| 485 | <string>WindowOfProject</string> | ||
| 486 | <key>Identifier</key> | ||
| 487 | <string>perspective.morph</string> | ||
| 488 | <key>IsVertical</key> | ||
| 489 | <integer>0</integer> | ||
| 490 | <key>Layout</key> | ||
| 491 | <array> | ||
| 492 | <dict> | ||
| 493 | <key>BecomeActive</key> | ||
| 494 | <integer>1</integer> | ||
| 495 | <key>ContentConfiguration</key> | ||
| 496 | <dict> | ||
| 497 | <key>PBXBottomSmartGroupGIDs</key> | ||
| 498 | <array> | ||
| 499 | <string>1C37FBAC04509CD000000102</string> | ||
| 500 | <string>1C37FAAC04509CD000000102</string> | ||
| 501 | <string>1C08E77C0454961000C914BD</string> | ||
| 502 | <string>1C37FABC05509CD000000102</string> | ||
| 503 | <string>1C37FABC05539CD112110102</string> | ||
| 504 | <string>E2644B35053B69B200211256</string> | ||
| 505 | <string>1C37FABC04509CD000100104</string> | ||
| 506 | <string>1CC0EA4004350EF90044410B</string> | ||
| 507 | <string>1CC0EA4004350EF90041110B</string> | ||
| 508 | </array> | ||
| 509 | <key>PBXProjectModuleGUID</key> | ||
| 510 | <string>11E0B1FE06471DED0097A5F4</string> | ||
| 511 | <key>PBXProjectModuleLabel</key> | ||
| 512 | <string>Files</string> | ||
| 513 | <key>PBXProjectStructureProvided</key> | ||
| 514 | <string>yes</string> | ||
| 515 | <key>PBXSmartGroupTreeModuleColumnData</key> | ||
| 516 | <dict> | ||
| 517 | <key>PBXSmartGroupTreeModuleColumnWidthsKey</key> | ||
| 518 | <array> | ||
| 519 | <real>186</real> | ||
| 520 | </array> | ||
| 521 | <key>PBXSmartGroupTreeModuleColumnsKey_v4</key> | ||
| 522 | <array> | ||
| 523 | <string>MainColumn</string> | ||
| 524 | </array> | ||
| 525 | </dict> | ||
| 526 | <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key> | ||
| 527 | <dict> | ||
| 528 | <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key> | ||
| 529 | <array> | ||
| 530 | <string>29B97314FDCFA39411CA2CEA</string> | ||
| 531 | <string>1C37FABC05509CD000000102</string> | ||
| 532 | </array> | ||
| 533 | <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key> | ||
| 534 | <array> | ||
| 535 | <array> | ||
| 536 | <integer>0</integer> | ||
| 537 | </array> | ||
| 538 | </array> | ||
| 539 | <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> | ||
| 540 | <string>{{0, 0}, {186, 337}}</string> | ||
| 541 | </dict> | ||
| 542 | <key>PBXTopSmartGroupGIDs</key> | ||
| 543 | <array/> | ||
| 544 | <key>XCIncludePerspectivesSwitch</key> | ||
| 545 | <integer>1</integer> | ||
| 546 | <key>XCSharingToken</key> | ||
| 547 | <string>com.apple.Xcode.GFSharingToken</string> | ||
| 548 | </dict> | ||
| 549 | <key>GeometryConfiguration</key> | ||
| 550 | <dict> | ||
| 551 | <key>Frame</key> | ||
| 552 | <string>{{0, 0}, {203, 355}}</string> | ||
| 553 | <key>GroupTreeTableConfiguration</key> | ||
| 554 | <array> | ||
| 555 | <string>MainColumn</string> | ||
| 556 | <real>186</real> | ||
| 557 | </array> | ||
| 558 | <key>RubberWindowFrame</key> | ||
| 559 | <string>373 269 690 397 0 0 1440 878 </string> | ||
| 560 | </dict> | ||
| 561 | <key>Module</key> | ||
| 562 | <string>PBXSmartGroupTreeModule</string> | ||
| 563 | <key>Proportion</key> | ||
| 564 | <string>100%</string> | ||
| 565 | </dict> | ||
| 566 | </array> | ||
| 567 | <key>Name</key> | ||
| 568 | <string>Morph</string> | ||
| 569 | <key>PreferredWidth</key> | ||
| 570 | <integer>300</integer> | ||
| 571 | <key>ServiceClasses</key> | ||
| 572 | <array> | ||
| 573 | <string>XCModuleDock</string> | ||
| 574 | <string>PBXSmartGroupTreeModule</string> | ||
| 575 | </array> | ||
| 576 | <key>TableOfContents</key> | ||
| 577 | <array> | ||
| 578 | <string>11E0B1FE06471DED0097A5F4</string> | ||
| 579 | </array> | ||
| 580 | <key>ToolbarConfiguration</key> | ||
| 581 | <string>xcode.toolbar.config.default.short</string> | ||
| 582 | </dict> | ||
| 583 | </array> | ||
| 584 | <key>PerspectivesBarVisible</key> | ||
| 585 | <false/> | ||
| 586 | <key>ShelfIsVisible</key> | ||
| 587 | <false/> | ||
| 588 | <key>SourceDescription</key> | ||
| 589 | <string>file at '/System/Library/PrivateFrameworks/DevToolsInterface.framework/Versions/A/Resources/XCPerspectivesSpecificationMode1.xcperspec'</string> | ||
| 590 | <key>StatusbarIsVisible</key> | ||
| 591 | <true/> | ||
| 592 | <key>TimeStamp</key> | ||
| 593 | <real>215425482.989885</real> | ||
| 594 | <key>ToolbarDisplayMode</key> | ||
| 595 | <integer>1</integer> | ||
| 596 | <key>ToolbarIsVisible</key> | ||
| 597 | <true/> | ||
| 598 | <key>ToolbarSizeMode</key> | ||
| 599 | <integer>1</integer> | ||
| 600 | <key>Type</key> | ||
| 601 | <string>Perspectives</string> | ||
| 602 | <key>UpdateMessage</key> | ||
| 603 | <string>The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'?</string> | ||
| 604 | <key>WindowJustification</key> | ||
| 605 | <integer>5</integer> | ||
| 606 | <key>WindowOrderList</key> | ||
| 607 | <array> | ||
| 608 | <string>2736315E0CD71F3400A12F3E</string> | ||
| 609 | <string>2736315F0CD71F3400A12F3E</string> | ||
| 610 | <string>274A5F0A0C2F4351000A66CF</string> | ||
| 611 | <string>273631580CD71F2400A12F3E</string> | ||
| 612 | <string>27F6DA310C4416540054E42A</string> | ||
| 613 | <string>2784DBE60CD6544900B13CF3</string> | ||
| 614 | <string>/Users/abisoft/Slug/public/2007/Lua Modules/Lanes/xcode/xcode.xcodeproj</string> | ||
| 615 | <string>27602E740C2F3B100086E627</string> | ||
| 616 | <string>1CD10A99069EF8BA00B06720</string> | ||
| 617 | </array> | ||
| 618 | <key>WindowString</key> | ||
| 619 | <string>243 337 880 562 0 0 1680 1028 </string> | ||
| 620 | <key>WindowTools</key> | ||
| 621 | <array> | ||
| 622 | <dict> | ||
| 623 | <key>FirstTimeWindowDisplayed</key> | ||
| 624 | <false/> | ||
| 625 | <key>Identifier</key> | ||
| 626 | <string>windowTool.build</string> | ||
| 627 | <key>IsVertical</key> | ||
| 628 | <true/> | ||
| 629 | <key>Layout</key> | ||
| 630 | <array> | ||
| 631 | <dict> | ||
| 632 | <key>Dock</key> | ||
| 633 | <array> | ||
| 634 | <dict> | ||
| 635 | <key>ContentConfiguration</key> | ||
| 636 | <dict> | ||
| 637 | <key>PBXProjectModuleGUID</key> | ||
| 638 | <string>1CD0528F0623707200166675</string> | ||
| 639 | <key>PBXProjectModuleLabel</key> | ||
| 640 | <string></string> | ||
| 641 | <key>StatusBarVisibility</key> | ||
| 642 | <true/> | ||
| 643 | </dict> | ||
| 644 | <key>GeometryConfiguration</key> | ||
| 645 | <dict> | ||
| 646 | <key>Frame</key> | ||
| 647 | <string>{{0, 0}, {983, 267}}</string> | ||
| 648 | <key>RubberWindowFrame</key> | ||
| 649 | <string>541 112 983 821 0 0 1680 1028 </string> | ||
| 650 | </dict> | ||
| 651 | <key>Module</key> | ||
| 652 | <string>PBXNavigatorGroup</string> | ||
| 653 | <key>Proportion</key> | ||
| 654 | <string>267pt</string> | ||
| 655 | </dict> | ||
| 656 | <dict> | ||
| 657 | <key>BecomeActive</key> | ||
| 658 | <true/> | ||
| 659 | <key>ContentConfiguration</key> | ||
| 660 | <dict> | ||
| 661 | <key>PBXBuildLogShowsTranscriptDefaultKey</key> | ||
| 662 | <string>{{0, 5}, {983, 503}}</string> | ||
| 663 | <key>PBXProjectModuleGUID</key> | ||
| 664 | <string>XCMainBuildResultsModuleGUID</string> | ||
| 665 | <key>PBXProjectModuleLabel</key> | ||
| 666 | <string>Build</string> | ||
| 667 | <key>XCBuildResultsTrigger_Collapse</key> | ||
| 668 | <integer>1021</integer> | ||
| 669 | <key>XCBuildResultsTrigger_Open</key> | ||
| 670 | <integer>1010</integer> | ||
| 671 | </dict> | ||
| 672 | <key>GeometryConfiguration</key> | ||
| 673 | <dict> | ||
| 674 | <key>Frame</key> | ||
| 675 | <string>{{0, 272}, {983, 508}}</string> | ||
| 676 | <key>RubberWindowFrame</key> | ||
| 677 | <string>541 112 983 821 0 0 1680 1028 </string> | ||
| 678 | </dict> | ||
| 679 | <key>Module</key> | ||
| 680 | <string>PBXBuildResultsModule</string> | ||
| 681 | <key>Proportion</key> | ||
| 682 | <string>508pt</string> | ||
| 683 | </dict> | ||
| 684 | </array> | ||
| 685 | <key>Proportion</key> | ||
| 686 | <string>780pt</string> | ||
| 687 | </dict> | ||
| 688 | </array> | ||
| 689 | <key>Name</key> | ||
| 690 | <string>Build Results</string> | ||
| 691 | <key>ServiceClasses</key> | ||
| 692 | <array> | ||
| 693 | <string>PBXBuildResultsModule</string> | ||
| 694 | </array> | ||
| 695 | <key>StatusbarIsVisible</key> | ||
| 696 | <true/> | ||
| 697 | <key>TableOfContents</key> | ||
| 698 | <array> | ||
| 699 | <string>27602E740C2F3B100086E627</string> | ||
| 700 | <string>273631510CD71F2400A12F3E</string> | ||
| 701 | <string>1CD0528F0623707200166675</string> | ||
| 702 | <string>XCMainBuildResultsModuleGUID</string> | ||
| 703 | </array> | ||
| 704 | <key>ToolbarConfiguration</key> | ||
| 705 | <string>xcode.toolbar.config.build</string> | ||
| 706 | <key>WindowString</key> | ||
| 707 | <string>541 112 983 821 0 0 1680 1028 </string> | ||
| 708 | <key>WindowToolGUID</key> | ||
| 709 | <string>27602E740C2F3B100086E627</string> | ||
| 710 | <key>WindowToolIsVisible</key> | ||
| 711 | <true/> | ||
| 712 | </dict> | ||
| 713 | <dict> | ||
| 714 | <key>FirstTimeWindowDisplayed</key> | ||
| 715 | <false/> | ||
| 716 | <key>Identifier</key> | ||
| 717 | <string>windowTool.debugger</string> | ||
| 718 | <key>IsVertical</key> | ||
| 719 | <true/> | ||
| 720 | <key>Layout</key> | ||
| 721 | <array> | ||
| 722 | <dict> | ||
| 723 | <key>Dock</key> | ||
| 724 | <array> | ||
| 725 | <dict> | ||
| 726 | <key>ContentConfiguration</key> | ||
| 727 | <dict> | ||
| 728 | <key>Debugger</key> | ||
| 729 | <dict> | ||
| 730 | <key>HorizontalSplitView</key> | ||
| 731 | <dict> | ||
| 732 | <key>_collapsingFrameDimension</key> | ||
| 733 | <real>0.0</real> | ||
| 734 | <key>_indexOfCollapsedView</key> | ||
| 735 | <integer>0</integer> | ||
| 736 | <key>_percentageOfCollapsedView</key> | ||
| 737 | <real>0.0</real> | ||
| 738 | <key>isCollapsed</key> | ||
| 739 | <string>yes</string> | ||
| 740 | <key>sizes</key> | ||
| 741 | <array> | ||
| 742 | <string>{{0, 0}, {437, 275}}</string> | ||
| 743 | <string>{{437, 0}, {584, 275}}</string> | ||
| 744 | </array> | ||
| 745 | </dict> | ||
| 746 | <key>VerticalSplitView</key> | ||
| 747 | <dict> | ||
| 748 | <key>_collapsingFrameDimension</key> | ||
| 749 | <real>0.0</real> | ||
| 750 | <key>_indexOfCollapsedView</key> | ||
| 751 | <integer>0</integer> | ||
| 752 | <key>_percentageOfCollapsedView</key> | ||
| 753 | <real>0.0</real> | ||
| 754 | <key>isCollapsed</key> | ||
| 755 | <string>yes</string> | ||
| 756 | <key>sizes</key> | ||
| 757 | <array> | ||
| 758 | <string>{{0, 0}, {1021, 275}}</string> | ||
| 759 | <string>{{0, 275}, {1021, 605}}</string> | ||
| 760 | </array> | ||
| 761 | </dict> | ||
| 762 | </dict> | ||
| 763 | <key>LauncherConfigVersion</key> | ||
| 764 | <string>8</string> | ||
| 765 | <key>PBXProjectModuleGUID</key> | ||
| 766 | <string>1C162984064C10D400B95A72</string> | ||
| 767 | <key>PBXProjectModuleLabel</key> | ||
| 768 | <string>Debug - GLUTExamples (Underwater)</string> | ||
| 769 | </dict> | ||
| 770 | <key>GeometryConfiguration</key> | ||
| 771 | <dict> | ||
| 772 | <key>DebugConsoleDrawerSize</key> | ||
| 773 | <string>{100, 120}</string> | ||
| 774 | <key>DebugConsoleVisible</key> | ||
| 775 | <string>None</string> | ||
| 776 | <key>DebugConsoleWindowFrame</key> | ||
| 777 | <string>{{200, 200}, {500, 300}}</string> | ||
| 778 | <key>DebugSTDIOWindowFrame</key> | ||
| 779 | <string>{{200, 200}, {500, 300}}</string> | ||
| 780 | <key>Frame</key> | ||
| 781 | <string>{{0, 0}, {1021, 880}}</string> | ||
| 782 | <key>RubberWindowFrame</key> | ||
| 783 | <string>504 97 1021 921 0 0 1680 1028 </string> | ||
| 784 | </dict> | ||
| 785 | <key>Module</key> | ||
| 786 | <string>PBXDebugSessionModule</string> | ||
| 787 | <key>Proportion</key> | ||
| 788 | <string>880pt</string> | ||
| 789 | </dict> | ||
| 790 | </array> | ||
| 791 | <key>Proportion</key> | ||
| 792 | <string>880pt</string> | ||
| 793 | </dict> | ||
| 794 | </array> | ||
| 795 | <key>Name</key> | ||
| 796 | <string>Debugger</string> | ||
| 797 | <key>ServiceClasses</key> | ||
| 798 | <array> | ||
| 799 | <string>PBXDebugSessionModule</string> | ||
| 800 | </array> | ||
| 801 | <key>StatusbarIsVisible</key> | ||
| 802 | <true/> | ||
| 803 | <key>TableOfContents</key> | ||
| 804 | <array> | ||
| 805 | <string>1CD10A99069EF8BA00B06720</string> | ||
| 806 | <string>273631520CD71F2400A12F3E</string> | ||
| 807 | <string>1C162984064C10D400B95A72</string> | ||
| 808 | <string>273631530CD71F2400A12F3E</string> | ||
| 809 | <string>273631540CD71F2400A12F3E</string> | ||
| 810 | <string>273631550CD71F2400A12F3E</string> | ||
| 811 | <string>273631560CD71F2400A12F3E</string> | ||
| 812 | <string>273631570CD71F2400A12F3E</string> | ||
| 813 | <string>273631580CD71F2400A12F3E</string> | ||
| 814 | </array> | ||
| 815 | <key>ToolbarConfiguration</key> | ||
| 816 | <string>xcode.toolbar.config.debug</string> | ||
| 817 | <key>WindowString</key> | ||
| 818 | <string>504 97 1021 921 0 0 1680 1028 </string> | ||
| 819 | <key>WindowToolGUID</key> | ||
| 820 | <string>1CD10A99069EF8BA00B06720</string> | ||
| 821 | <key>WindowToolIsVisible</key> | ||
| 822 | <true/> | ||
| 823 | </dict> | ||
| 824 | <dict> | ||
| 825 | <key>Identifier</key> | ||
| 826 | <string>windowTool.find</string> | ||
| 827 | <key>Layout</key> | ||
| 828 | <array> | ||
| 829 | <dict> | ||
| 830 | <key>Dock</key> | ||
| 831 | <array> | ||
| 832 | <dict> | ||
| 833 | <key>Dock</key> | ||
| 834 | <array> | ||
| 835 | <dict> | ||
| 836 | <key>ContentConfiguration</key> | ||
| 837 | <dict> | ||
| 838 | <key>PBXProjectModuleGUID</key> | ||
| 839 | <string>1CDD528C0622207200134675</string> | ||
| 840 | <key>PBXProjectModuleLabel</key> | ||
| 841 | <string><No Editor></string> | ||
| 842 | <key>PBXSplitModuleInNavigatorKey</key> | ||
| 843 | <dict> | ||
| 844 | <key>Split0</key> | ||
| 845 | <dict> | ||
| 846 | <key>PBXProjectModuleGUID</key> | ||
| 847 | <string>1CD0528D0623707200166675</string> | ||
| 848 | </dict> | ||
| 849 | <key>SplitCount</key> | ||
| 850 | <string>1</string> | ||
| 851 | </dict> | ||
| 852 | <key>StatusBarVisibility</key> | ||
| 853 | <integer>1</integer> | ||
| 854 | </dict> | ||
| 855 | <key>GeometryConfiguration</key> | ||
| 856 | <dict> | ||
| 857 | <key>Frame</key> | ||
| 858 | <string>{{0, 0}, {781, 167}}</string> | ||
| 859 | <key>RubberWindowFrame</key> | ||
| 860 | <string>62 385 781 470 0 0 1440 878 </string> | ||
| 861 | </dict> | ||
| 862 | <key>Module</key> | ||
| 863 | <string>PBXNavigatorGroup</string> | ||
| 864 | <key>Proportion</key> | ||
| 865 | <string>781pt</string> | ||
| 866 | </dict> | ||
| 867 | </array> | ||
| 868 | <key>Proportion</key> | ||
| 869 | <string>50%</string> | ||
| 870 | </dict> | ||
| 871 | <dict> | ||
| 872 | <key>BecomeActive</key> | ||
| 873 | <integer>1</integer> | ||
| 874 | <key>ContentConfiguration</key> | ||
| 875 | <dict> | ||
| 876 | <key>PBXProjectModuleGUID</key> | ||
| 877 | <string>1CD0528E0623707200166675</string> | ||
| 878 | <key>PBXProjectModuleLabel</key> | ||
| 879 | <string>Project Find</string> | ||
| 880 | </dict> | ||
| 881 | <key>GeometryConfiguration</key> | ||
| 882 | <dict> | ||
| 883 | <key>Frame</key> | ||
| 884 | <string>{{8, 0}, {773, 254}}</string> | ||
| 885 | <key>RubberWindowFrame</key> | ||
| 886 | <string>62 385 781 470 0 0 1440 878 </string> | ||
| 887 | </dict> | ||
| 888 | <key>Module</key> | ||
| 889 | <string>PBXProjectFindModule</string> | ||
| 890 | <key>Proportion</key> | ||
| 891 | <string>50%</string> | ||
| 892 | </dict> | ||
| 893 | </array> | ||
| 894 | <key>Proportion</key> | ||
| 895 | <string>428pt</string> | ||
| 896 | </dict> | ||
| 897 | </array> | ||
| 898 | <key>Name</key> | ||
| 899 | <string>Project Find</string> | ||
| 900 | <key>ServiceClasses</key> | ||
| 901 | <array> | ||
| 902 | <string>PBXProjectFindModule</string> | ||
| 903 | </array> | ||
| 904 | <key>StatusbarIsVisible</key> | ||
| 905 | <integer>1</integer> | ||
| 906 | <key>TableOfContents</key> | ||
| 907 | <array> | ||
| 908 | <string>1C530D57069F1CE1000CFCEE</string> | ||
| 909 | <string>1C530D58069F1CE1000CFCEE</string> | ||
| 910 | <string>1C530D59069F1CE1000CFCEE</string> | ||
| 911 | <string>1CDD528C0622207200134675</string> | ||
| 912 | <string>1C530D5A069F1CE1000CFCEE</string> | ||
| 913 | <string>1CE0B1FE06471DED0097A5F4</string> | ||
| 914 | <string>1CD0528E0623707200166675</string> | ||
| 915 | </array> | ||
| 916 | <key>WindowString</key> | ||
| 917 | <string>62 385 781 470 0 0 1440 878 </string> | ||
| 918 | <key>WindowToolGUID</key> | ||
| 919 | <string>1C530D57069F1CE1000CFCEE</string> | ||
| 920 | <key>WindowToolIsVisible</key> | ||
| 921 | <integer>0</integer> | ||
| 922 | </dict> | ||
| 923 | <dict> | ||
| 924 | <key>Identifier</key> | ||
| 925 | <string>MENUSEPARATOR</string> | ||
| 926 | </dict> | ||
| 927 | <dict> | ||
| 928 | <key>FirstTimeWindowDisplayed</key> | ||
| 929 | <false/> | ||
| 930 | <key>Identifier</key> | ||
| 931 | <string>windowTool.debuggerConsole</string> | ||
| 932 | <key>IsVertical</key> | ||
| 933 | <true/> | ||
| 934 | <key>Layout</key> | ||
| 935 | <array> | ||
| 936 | <dict> | ||
| 937 | <key>Dock</key> | ||
| 938 | <array> | ||
| 939 | <dict> | ||
| 940 | <key>BecomeActive</key> | ||
| 941 | <true/> | ||
| 942 | <key>ContentConfiguration</key> | ||
| 943 | <dict> | ||
| 944 | <key>PBXProjectModuleGUID</key> | ||
| 945 | <string>1C78EAAC065D492600B07095</string> | ||
| 946 | <key>PBXProjectModuleLabel</key> | ||
| 947 | <string>Debugger Console</string> | ||
| 948 | </dict> | ||
| 949 | <key>GeometryConfiguration</key> | ||
| 950 | <dict> | ||
| 951 | <key>Frame</key> | ||
| 952 | <string>{{0, 0}, {873, 523}}</string> | ||
| 953 | <key>RubberWindowFrame</key> | ||
| 954 | <string>114 193 873 564 0 0 1680 1028 </string> | ||
| 955 | </dict> | ||
| 956 | <key>Module</key> | ||
| 957 | <string>PBXDebugCLIModule</string> | ||
| 958 | <key>Proportion</key> | ||
| 959 | <string>523pt</string> | ||
| 960 | </dict> | ||
| 961 | </array> | ||
| 962 | <key>Proportion</key> | ||
| 963 | <string>523pt</string> | ||
| 964 | </dict> | ||
| 965 | </array> | ||
| 966 | <key>Name</key> | ||
| 967 | <string>Debugger Console</string> | ||
| 968 | <key>ServiceClasses</key> | ||
| 969 | <array> | ||
| 970 | <string>PBXDebugCLIModule</string> | ||
| 971 | </array> | ||
| 972 | <key>StatusbarIsVisible</key> | ||
| 973 | <true/> | ||
| 974 | <key>TableOfContents</key> | ||
| 975 | <array> | ||
| 976 | <string>274A5F0A0C2F4351000A66CF</string> | ||
| 977 | <string>273631590CD71F2400A12F3E</string> | ||
| 978 | <string>1C78EAAC065D492600B07095</string> | ||
| 979 | </array> | ||
| 980 | <key>WindowString</key> | ||
| 981 | <string>114 193 873 564 0 0 1680 1028 </string> | ||
| 982 | <key>WindowToolGUID</key> | ||
| 983 | <string>274A5F0A0C2F4351000A66CF</string> | ||
| 984 | <key>WindowToolIsVisible</key> | ||
| 985 | <false/> | ||
| 986 | </dict> | ||
| 987 | <dict> | ||
| 988 | <key>Identifier</key> | ||
| 989 | <string>windowTool.run</string> | ||
| 990 | <key>Layout</key> | ||
| 991 | <array> | ||
| 992 | <dict> | ||
| 993 | <key>Dock</key> | ||
| 994 | <array> | ||
| 995 | <dict> | ||
| 996 | <key>ContentConfiguration</key> | ||
| 997 | <dict> | ||
| 998 | <key>LauncherConfigVersion</key> | ||
| 999 | <string>3</string> | ||
| 1000 | <key>PBXProjectModuleGUID</key> | ||
| 1001 | <string>1CD0528B0623707200166675</string> | ||
| 1002 | <key>PBXProjectModuleLabel</key> | ||
| 1003 | <string>Run</string> | ||
| 1004 | <key>Runner</key> | ||
| 1005 | <dict> | ||
| 1006 | <key>HorizontalSplitView</key> | ||
| 1007 | <dict> | ||
| 1008 | <key>_collapsingFrameDimension</key> | ||
| 1009 | <real>0.0</real> | ||
| 1010 | <key>_indexOfCollapsedView</key> | ||
| 1011 | <integer>0</integer> | ||
| 1012 | <key>_percentageOfCollapsedView</key> | ||
| 1013 | <real>0.0</real> | ||
| 1014 | <key>isCollapsed</key> | ||
| 1015 | <string>yes</string> | ||
| 1016 | <key>sizes</key> | ||
| 1017 | <array> | ||
| 1018 | <string>{{0, 0}, {493, 167}}</string> | ||
| 1019 | <string>{{0, 176}, {493, 267}}</string> | ||
| 1020 | </array> | ||
| 1021 | </dict> | ||
| 1022 | <key>VerticalSplitView</key> | ||
| 1023 | <dict> | ||
| 1024 | <key>_collapsingFrameDimension</key> | ||
| 1025 | <real>0.0</real> | ||
| 1026 | <key>_indexOfCollapsedView</key> | ||
| 1027 | <integer>0</integer> | ||
| 1028 | <key>_percentageOfCollapsedView</key> | ||
| 1029 | <real>0.0</real> | ||
| 1030 | <key>isCollapsed</key> | ||
| 1031 | <string>yes</string> | ||
| 1032 | <key>sizes</key> | ||
| 1033 | <array> | ||
| 1034 | <string>{{0, 0}, {405, 443}}</string> | ||
| 1035 | <string>{{414, 0}, {514, 443}}</string> | ||
| 1036 | </array> | ||
| 1037 | </dict> | ||
| 1038 | </dict> | ||
| 1039 | </dict> | ||
| 1040 | <key>GeometryConfiguration</key> | ||
| 1041 | <dict> | ||
| 1042 | <key>Frame</key> | ||
| 1043 | <string>{{0, 0}, {460, 159}}</string> | ||
| 1044 | <key>RubberWindowFrame</key> | ||
| 1045 | <string>316 696 459 200 0 0 1280 1002 </string> | ||
| 1046 | </dict> | ||
| 1047 | <key>Module</key> | ||
| 1048 | <string>PBXRunSessionModule</string> | ||
| 1049 | <key>Proportion</key> | ||
| 1050 | <string>159pt</string> | ||
| 1051 | </dict> | ||
| 1052 | </array> | ||
| 1053 | <key>Proportion</key> | ||
| 1054 | <string>159pt</string> | ||
| 1055 | </dict> | ||
| 1056 | </array> | ||
| 1057 | <key>Name</key> | ||
| 1058 | <string>Run Log</string> | ||
| 1059 | <key>ServiceClasses</key> | ||
| 1060 | <array> | ||
| 1061 | <string>PBXRunSessionModule</string> | ||
| 1062 | </array> | ||
| 1063 | <key>StatusbarIsVisible</key> | ||
| 1064 | <integer>1</integer> | ||
| 1065 | <key>TableOfContents</key> | ||
| 1066 | <array> | ||
| 1067 | <string>1C0AD2B3069F1EA900FABCE6</string> | ||
| 1068 | <string>1C0AD2B4069F1EA900FABCE6</string> | ||
| 1069 | <string>1CD0528B0623707200166675</string> | ||
| 1070 | <string>1C0AD2B5069F1EA900FABCE6</string> | ||
| 1071 | </array> | ||
| 1072 | <key>ToolbarConfiguration</key> | ||
| 1073 | <string>xcode.toolbar.config.run</string> | ||
| 1074 | <key>WindowString</key> | ||
| 1075 | <string>316 696 459 200 0 0 1280 1002 </string> | ||
| 1076 | <key>WindowToolGUID</key> | ||
| 1077 | <string>1C0AD2B3069F1EA900FABCE6</string> | ||
| 1078 | <key>WindowToolIsVisible</key> | ||
| 1079 | <integer>0</integer> | ||
| 1080 | </dict> | ||
| 1081 | <dict> | ||
| 1082 | <key>Identifier</key> | ||
| 1083 | <string>windowTool.scm</string> | ||
| 1084 | <key>Layout</key> | ||
| 1085 | <array> | ||
| 1086 | <dict> | ||
| 1087 | <key>Dock</key> | ||
| 1088 | <array> | ||
| 1089 | <dict> | ||
| 1090 | <key>ContentConfiguration</key> | ||
| 1091 | <dict> | ||
| 1092 | <key>PBXProjectModuleGUID</key> | ||
| 1093 | <string>1C78EAB2065D492600B07095</string> | ||
| 1094 | <key>PBXProjectModuleLabel</key> | ||
| 1095 | <string><No Editor></string> | ||
| 1096 | <key>PBXSplitModuleInNavigatorKey</key> | ||
| 1097 | <dict> | ||
| 1098 | <key>Split0</key> | ||
| 1099 | <dict> | ||
| 1100 | <key>PBXProjectModuleGUID</key> | ||
| 1101 | <string>1C78EAB3065D492600B07095</string> | ||
| 1102 | </dict> | ||
| 1103 | <key>SplitCount</key> | ||
| 1104 | <string>1</string> | ||
| 1105 | </dict> | ||
| 1106 | <key>StatusBarVisibility</key> | ||
| 1107 | <integer>1</integer> | ||
| 1108 | </dict> | ||
| 1109 | <key>GeometryConfiguration</key> | ||
| 1110 | <dict> | ||
| 1111 | <key>Frame</key> | ||
| 1112 | <string>{{0, 0}, {452, 0}}</string> | ||
| 1113 | <key>RubberWindowFrame</key> | ||
| 1114 | <string>743 379 452 308 0 0 1280 1002 </string> | ||
| 1115 | </dict> | ||
| 1116 | <key>Module</key> | ||
| 1117 | <string>PBXNavigatorGroup</string> | ||
| 1118 | <key>Proportion</key> | ||
| 1119 | <string>0pt</string> | ||
| 1120 | </dict> | ||
| 1121 | <dict> | ||
| 1122 | <key>BecomeActive</key> | ||
| 1123 | <integer>1</integer> | ||
| 1124 | <key>ContentConfiguration</key> | ||
| 1125 | <dict> | ||
| 1126 | <key>PBXProjectModuleGUID</key> | ||
| 1127 | <string>1CD052920623707200166675</string> | ||
| 1128 | <key>PBXProjectModuleLabel</key> | ||
| 1129 | <string>SCM</string> | ||
| 1130 | </dict> | ||
| 1131 | <key>GeometryConfiguration</key> | ||
| 1132 | <dict> | ||
| 1133 | <key>ConsoleFrame</key> | ||
| 1134 | <string>{{0, 259}, {452, 0}}</string> | ||
| 1135 | <key>Frame</key> | ||
| 1136 | <string>{{0, 7}, {452, 259}}</string> | ||
| 1137 | <key>RubberWindowFrame</key> | ||
| 1138 | <string>743 379 452 308 0 0 1280 1002 </string> | ||
| 1139 | <key>TableConfiguration</key> | ||
| 1140 | <array> | ||
| 1141 | <string>Status</string> | ||
| 1142 | <real>30</real> | ||
| 1143 | <string>FileName</string> | ||
| 1144 | <real>199</real> | ||
| 1145 | <string>Path</string> | ||
| 1146 | <real>197.09500122070312</real> | ||
| 1147 | </array> | ||
| 1148 | <key>TableFrame</key> | ||
| 1149 | <string>{{0, 0}, {452, 250}}</string> | ||
| 1150 | </dict> | ||
| 1151 | <key>Module</key> | ||
| 1152 | <string>PBXCVSModule</string> | ||
| 1153 | <key>Proportion</key> | ||
| 1154 | <string>262pt</string> | ||
| 1155 | </dict> | ||
| 1156 | </array> | ||
| 1157 | <key>Proportion</key> | ||
| 1158 | <string>266pt</string> | ||
| 1159 | </dict> | ||
| 1160 | </array> | ||
| 1161 | <key>Name</key> | ||
| 1162 | <string>SCM</string> | ||
| 1163 | <key>ServiceClasses</key> | ||
| 1164 | <array> | ||
| 1165 | <string>PBXCVSModule</string> | ||
| 1166 | </array> | ||
| 1167 | <key>StatusbarIsVisible</key> | ||
| 1168 | <integer>1</integer> | ||
| 1169 | <key>TableOfContents</key> | ||
| 1170 | <array> | ||
| 1171 | <string>1C78EAB4065D492600B07095</string> | ||
| 1172 | <string>1C78EAB5065D492600B07095</string> | ||
| 1173 | <string>1C78EAB2065D492600B07095</string> | ||
| 1174 | <string>1CD052920623707200166675</string> | ||
| 1175 | </array> | ||
| 1176 | <key>ToolbarConfiguration</key> | ||
| 1177 | <string>xcode.toolbar.config.scm</string> | ||
| 1178 | <key>WindowString</key> | ||
| 1179 | <string>743 379 452 308 0 0 1280 1002 </string> | ||
| 1180 | </dict> | ||
| 1181 | <dict> | ||
| 1182 | <key>FirstTimeWindowDisplayed</key> | ||
| 1183 | <false/> | ||
| 1184 | <key>Identifier</key> | ||
| 1185 | <string>windowTool.breakpoints</string> | ||
| 1186 | <key>IsVertical</key> | ||
| 1187 | <false/> | ||
| 1188 | <key>Layout</key> | ||
| 1189 | <array> | ||
| 1190 | <dict> | ||
| 1191 | <key>Dock</key> | ||
| 1192 | <array> | ||
| 1193 | <dict> | ||
| 1194 | <key>BecomeActive</key> | ||
| 1195 | <true/> | ||
| 1196 | <key>ContentConfiguration</key> | ||
| 1197 | <dict> | ||
| 1198 | <key>PBXBottomSmartGroupGIDs</key> | ||
| 1199 | <array> | ||
| 1200 | <string>1C77FABC04509CD000000102</string> | ||
| 1201 | </array> | ||
| 1202 | <key>PBXProjectModuleGUID</key> | ||
| 1203 | <string>1CE0B1FE06471DED0097A5F4</string> | ||
| 1204 | <key>PBXProjectModuleLabel</key> | ||
| 1205 | <string>Files</string> | ||
| 1206 | <key>PBXProjectStructureProvided</key> | ||
| 1207 | <string>no</string> | ||
| 1208 | <key>PBXSmartGroupTreeModuleColumnData</key> | ||
| 1209 | <dict> | ||
| 1210 | <key>PBXSmartGroupTreeModuleColumnWidthsKey</key> | ||
| 1211 | <array> | ||
| 1212 | <real>168</real> | ||
| 1213 | </array> | ||
| 1214 | <key>PBXSmartGroupTreeModuleColumnsKey_v4</key> | ||
| 1215 | <array> | ||
| 1216 | <string>MainColumn</string> | ||
| 1217 | </array> | ||
| 1218 | </dict> | ||
| 1219 | <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key> | ||
| 1220 | <dict> | ||
| 1221 | <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key> | ||
| 1222 | <array> | ||
| 1223 | <string>1C77FABC04509CD000000102</string> | ||
| 1224 | <string>1C3E0DCA080725EA00A55177</string> | ||
| 1225 | </array> | ||
| 1226 | <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key> | ||
| 1227 | <array> | ||
| 1228 | <array> | ||
| 1229 | <integer>1</integer> | ||
| 1230 | <integer>0</integer> | ||
| 1231 | </array> | ||
| 1232 | </array> | ||
| 1233 | <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> | ||
| 1234 | <string>{{0, 0}, {168, 365}}</string> | ||
| 1235 | </dict> | ||
| 1236 | <key>PBXTopSmartGroupGIDs</key> | ||
| 1237 | <array/> | ||
| 1238 | <key>XCIncludePerspectivesSwitch</key> | ||
| 1239 | <false/> | ||
| 1240 | </dict> | ||
| 1241 | <key>GeometryConfiguration</key> | ||
| 1242 | <dict> | ||
| 1243 | <key>Frame</key> | ||
| 1244 | <string>{{0, 0}, {185, 383}}</string> | ||
| 1245 | <key>GroupTreeTableConfiguration</key> | ||
| 1246 | <array> | ||
| 1247 | <string>MainColumn</string> | ||
| 1248 | <real>168</real> | ||
| 1249 | </array> | ||
| 1250 | <key>RubberWindowFrame</key> | ||
| 1251 | <string>713 435 871 424 0 0 1680 1028 </string> | ||
| 1252 | </dict> | ||
| 1253 | <key>Module</key> | ||
| 1254 | <string>PBXSmartGroupTreeModule</string> | ||
| 1255 | <key>Proportion</key> | ||
| 1256 | <string>185pt</string> | ||
| 1257 | </dict> | ||
| 1258 | <dict> | ||
| 1259 | <key>ContentConfiguration</key> | ||
| 1260 | <dict> | ||
| 1261 | <key>PBXProjectModuleGUID</key> | ||
| 1262 | <string>1CA1AED706398EBD00589147</string> | ||
| 1263 | <key>PBXProjectModuleLabel</key> | ||
| 1264 | <string>Detail</string> | ||
| 1265 | </dict> | ||
| 1266 | <key>GeometryConfiguration</key> | ||
| 1267 | <dict> | ||
| 1268 | <key>Frame</key> | ||
| 1269 | <string>{{190, 0}, {681, 383}}</string> | ||
| 1270 | <key>RubberWindowFrame</key> | ||
| 1271 | <string>713 435 871 424 0 0 1680 1028 </string> | ||
| 1272 | </dict> | ||
| 1273 | <key>Module</key> | ||
| 1274 | <string>XCDetailModule</string> | ||
| 1275 | <key>Proportion</key> | ||
| 1276 | <string>681pt</string> | ||
| 1277 | </dict> | ||
| 1278 | </array> | ||
| 1279 | <key>Proportion</key> | ||
| 1280 | <string>383pt</string> | ||
| 1281 | </dict> | ||
| 1282 | </array> | ||
| 1283 | <key>MajorVersion</key> | ||
| 1284 | <integer>2</integer> | ||
| 1285 | <key>MinorVersion</key> | ||
| 1286 | <integer>0</integer> | ||
| 1287 | <key>Name</key> | ||
| 1288 | <string>Breakpoints</string> | ||
| 1289 | <key>ServiceClasses</key> | ||
| 1290 | <array> | ||
| 1291 | <string>PBXSmartGroupTreeModule</string> | ||
| 1292 | <string>XCDetailModule</string> | ||
| 1293 | </array> | ||
| 1294 | <key>StatusbarIsVisible</key> | ||
| 1295 | <true/> | ||
| 1296 | <key>TableOfContents</key> | ||
| 1297 | <array> | ||
| 1298 | <string>271333C40C4602BB005FEE0E</string> | ||
| 1299 | <string>271333C50C4602BB005FEE0E</string> | ||
| 1300 | <string>1CE0B1FE06471DED0097A5F4</string> | ||
| 1301 | <string>1CA1AED706398EBD00589147</string> | ||
| 1302 | </array> | ||
| 1303 | <key>ToolbarConfiguration</key> | ||
| 1304 | <string>xcode.toolbar.config.breakpoints</string> | ||
| 1305 | <key>WindowString</key> | ||
| 1306 | <string>713 435 871 424 0 0 1680 1028 </string> | ||
| 1307 | <key>WindowToolGUID</key> | ||
| 1308 | <string>271333C40C4602BB005FEE0E</string> | ||
| 1309 | <key>WindowToolIsVisible</key> | ||
| 1310 | <false/> | ||
| 1311 | </dict> | ||
| 1312 | <dict> | ||
| 1313 | <key>Identifier</key> | ||
| 1314 | <string>windowTool.debugAnimator</string> | ||
| 1315 | <key>Layout</key> | ||
| 1316 | <array> | ||
| 1317 | <dict> | ||
| 1318 | <key>Dock</key> | ||
| 1319 | <array> | ||
| 1320 | <dict> | ||
| 1321 | <key>Module</key> | ||
| 1322 | <string>PBXNavigatorGroup</string> | ||
| 1323 | <key>Proportion</key> | ||
| 1324 | <string>100%</string> | ||
| 1325 | </dict> | ||
| 1326 | </array> | ||
| 1327 | <key>Proportion</key> | ||
| 1328 | <string>100%</string> | ||
| 1329 | </dict> | ||
| 1330 | </array> | ||
| 1331 | <key>Name</key> | ||
| 1332 | <string>Debug Visualizer</string> | ||
| 1333 | <key>ServiceClasses</key> | ||
| 1334 | <array> | ||
| 1335 | <string>PBXNavigatorGroup</string> | ||
| 1336 | </array> | ||
| 1337 | <key>StatusbarIsVisible</key> | ||
| 1338 | <integer>1</integer> | ||
| 1339 | <key>ToolbarConfiguration</key> | ||
| 1340 | <string>xcode.toolbar.config.debugAnimator</string> | ||
| 1341 | <key>WindowString</key> | ||
| 1342 | <string>100 100 700 500 0 0 1280 1002 </string> | ||
| 1343 | </dict> | ||
| 1344 | <dict> | ||
| 1345 | <key>Identifier</key> | ||
| 1346 | <string>windowTool.bookmarks</string> | ||
| 1347 | <key>Layout</key> | ||
| 1348 | <array> | ||
| 1349 | <dict> | ||
| 1350 | <key>Dock</key> | ||
| 1351 | <array> | ||
| 1352 | <dict> | ||
| 1353 | <key>Module</key> | ||
| 1354 | <string>PBXBookmarksModule</string> | ||
| 1355 | <key>Proportion</key> | ||
| 1356 | <string>100%</string> | ||
| 1357 | </dict> | ||
| 1358 | </array> | ||
| 1359 | <key>Proportion</key> | ||
| 1360 | <string>100%</string> | ||
| 1361 | </dict> | ||
| 1362 | </array> | ||
| 1363 | <key>Name</key> | ||
| 1364 | <string>Bookmarks</string> | ||
| 1365 | <key>ServiceClasses</key> | ||
| 1366 | <array> | ||
| 1367 | <string>PBXBookmarksModule</string> | ||
| 1368 | </array> | ||
| 1369 | <key>StatusbarIsVisible</key> | ||
| 1370 | <integer>0</integer> | ||
| 1371 | <key>WindowString</key> | ||
| 1372 | <string>538 42 401 187 0 0 1280 1002 </string> | ||
| 1373 | </dict> | ||
| 1374 | <dict> | ||
| 1375 | <key>Identifier</key> | ||
| 1376 | <string>windowTool.classBrowser</string> | ||
| 1377 | <key>Layout</key> | ||
| 1378 | <array> | ||
| 1379 | <dict> | ||
| 1380 | <key>Dock</key> | ||
| 1381 | <array> | ||
| 1382 | <dict> | ||
| 1383 | <key>BecomeActive</key> | ||
| 1384 | <integer>1</integer> | ||
| 1385 | <key>ContentConfiguration</key> | ||
| 1386 | <dict> | ||
| 1387 | <key>OptionsSetName</key> | ||
| 1388 | <string>Hierarchy, all classes</string> | ||
| 1389 | <key>PBXProjectModuleGUID</key> | ||
| 1390 | <string>1CA6456E063B45B4001379D8</string> | ||
| 1391 | <key>PBXProjectModuleLabel</key> | ||
| 1392 | <string>Class Browser - NSObject</string> | ||
| 1393 | </dict> | ||
| 1394 | <key>GeometryConfiguration</key> | ||
| 1395 | <dict> | ||
| 1396 | <key>ClassesFrame</key> | ||
| 1397 | <string>{{0, 0}, {374, 96}}</string> | ||
| 1398 | <key>ClassesTreeTableConfiguration</key> | ||
| 1399 | <array> | ||
| 1400 | <string>PBXClassNameColumnIdentifier</string> | ||
| 1401 | <real>208</real> | ||
| 1402 | <string>PBXClassBookColumnIdentifier</string> | ||
| 1403 | <real>22</real> | ||
| 1404 | </array> | ||
| 1405 | <key>Frame</key> | ||
| 1406 | <string>{{0, 0}, {630, 331}}</string> | ||
| 1407 | <key>MembersFrame</key> | ||
| 1408 | <string>{{0, 105}, {374, 395}}</string> | ||
| 1409 | <key>MembersTreeTableConfiguration</key> | ||
| 1410 | <array> | ||
| 1411 | <string>PBXMemberTypeIconColumnIdentifier</string> | ||
| 1412 | <real>22</real> | ||
| 1413 | <string>PBXMemberNameColumnIdentifier</string> | ||
| 1414 | <real>216</real> | ||
| 1415 | <string>PBXMemberTypeColumnIdentifier</string> | ||
| 1416 | <real>97</real> | ||
| 1417 | <string>PBXMemberBookColumnIdentifier</string> | ||
| 1418 | <real>22</real> | ||
| 1419 | </array> | ||
| 1420 | <key>PBXModuleWindowStatusBarHidden2</key> | ||
| 1421 | <integer>1</integer> | ||
| 1422 | <key>RubberWindowFrame</key> | ||
| 1423 | <string>385 179 630 352 0 0 1440 878 </string> | ||
| 1424 | </dict> | ||
| 1425 | <key>Module</key> | ||
| 1426 | <string>PBXClassBrowserModule</string> | ||
| 1427 | <key>Proportion</key> | ||
| 1428 | <string>332pt</string> | ||
| 1429 | </dict> | ||
| 1430 | </array> | ||
| 1431 | <key>Proportion</key> | ||
| 1432 | <string>332pt</string> | ||
| 1433 | </dict> | ||
| 1434 | </array> | ||
| 1435 | <key>Name</key> | ||
| 1436 | <string>Class Browser</string> | ||
| 1437 | <key>ServiceClasses</key> | ||
| 1438 | <array> | ||
| 1439 | <string>PBXClassBrowserModule</string> | ||
| 1440 | </array> | ||
| 1441 | <key>StatusbarIsVisible</key> | ||
| 1442 | <integer>0</integer> | ||
| 1443 | <key>TableOfContents</key> | ||
| 1444 | <array> | ||
| 1445 | <string>1C0AD2AF069F1E9B00FABCE6</string> | ||
| 1446 | <string>1C0AD2B0069F1E9B00FABCE6</string> | ||
| 1447 | <string>1CA6456E063B45B4001379D8</string> | ||
| 1448 | </array> | ||
| 1449 | <key>ToolbarConfiguration</key> | ||
| 1450 | <string>xcode.toolbar.config.classbrowser</string> | ||
| 1451 | <key>WindowString</key> | ||
| 1452 | <string>385 179 630 352 0 0 1440 878 </string> | ||
| 1453 | <key>WindowToolGUID</key> | ||
| 1454 | <string>1C0AD2AF069F1E9B00FABCE6</string> | ||
| 1455 | <key>WindowToolIsVisible</key> | ||
| 1456 | <integer>0</integer> | ||
| 1457 | </dict> | ||
| 1458 | </array> | ||
| 1459 | </dict> | ||
| 1460 | </plist> | ||
diff --git a/xcode/xcode.xcodeproj/abisoft.pbxuser b/xcode/xcode.xcodeproj/abisoft.pbxuser deleted file mode 100644 index 3da9848..0000000 --- a/xcode/xcode.xcodeproj/abisoft.pbxuser +++ /dev/null | |||
| @@ -1,411 +0,0 @@ | |||
| 1 | // !$*UTF8*$! | ||
| 2 | { | ||
| 3 | 08FB7793FE84155DC02AAC07 /* Project object */ = { | ||
| 4 | activeArchitecture = ppc; | ||
| 5 | activeBuildConfigurationName = Debug; | ||
| 6 | activeExecutable = 274A5EFC0C2F41FB000A66CF /* Lua 5.1 */; | ||
| 7 | activeTarget = D2AAC0620554660B00DB518D /* xcode */; | ||
| 8 | addToTargets = ( | ||
| 9 | D2AAC0620554660B00DB518D /* xcode */, | ||
| 10 | ); | ||
| 11 | breakpoints = ( | ||
| 12 | 27280DE10C495CCB000FD317 /* gluax_static.c:667 */, | ||
| 13 | 27280DE60C495D0C000FD317 /* gluax_static.c:663 */, | ||
| 14 | 27E802B50C4978C700B1E216 /* sdl_module.cpp:630 */, | ||
| 15 | 277CF6980C4A631C0044B79E /* gluax.c:2476 */, | ||
| 16 | 2784DBE20CD64B1000B13CF3 /* gluax_static.c:164 */, | ||
| 17 | 273631630CD71FBC00A12F3E /* lanes.c:1429 */, | ||
| 18 | 27BD9DD60E403B490056C472 /* lanes.c:1168 */, | ||
| 19 | 27BD9DEB0E403C250056C472 /* lanes.c:1246 */, | ||
| 20 | ); | ||
| 21 | codeSenseManager = 27602E610C2F36D60086E627 /* Code sense */; | ||
| 22 | executables = ( | ||
| 23 | 274A5EFC0C2F41FB000A66CF /* Lua 5.1 */, | ||
| 24 | ); | ||
| 25 | perUserDictionary = { | ||
| 26 | "PBXConfiguration.PBXBreakpointsDataSource.v1:1CA1AED706398EBD00589147" = { | ||
| 27 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; | ||
| 28 | PBXFileTableDataSourceColumnSortingKey = PBXBreakpointsDataSource_BreakpointID; | ||
| 29 | PBXFileTableDataSourceColumnWidthsKey = ( | ||
| 30 | 20, | ||
| 31 | 20, | ||
| 32 | 253, | ||
| 33 | 20, | ||
| 34 | 152, | ||
| 35 | 151, | ||
| 36 | 20, | ||
| 37 | ); | ||
| 38 | PBXFileTableDataSourceColumnsKey = ( | ||
| 39 | PBXBreakpointsDataSource_ActionID, | ||
| 40 | PBXBreakpointsDataSource_TypeID, | ||
| 41 | PBXBreakpointsDataSource_BreakpointID, | ||
| 42 | PBXBreakpointsDataSource_UseID, | ||
| 43 | PBXBreakpointsDataSource_LocationID, | ||
| 44 | PBXBreakpointsDataSource_ConditionID, | ||
| 45 | PBXBreakpointsDataSource_ContinueID, | ||
| 46 | ); | ||
| 47 | }; | ||
| 48 | PBXConfiguration.PBXFileTableDataSource3.PBXExecutablesDataSource = { | ||
| 49 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; | ||
| 50 | PBXFileTableDataSourceColumnSortingKey = PBXExecutablesDataSource_NameID; | ||
| 51 | PBXFileTableDataSourceColumnWidthsKey = ( | ||
| 52 | 22, | ||
| 53 | 300, | ||
| 54 | 304, | ||
| 55 | ); | ||
| 56 | PBXFileTableDataSourceColumnsKey = ( | ||
| 57 | PBXExecutablesDataSource_ActiveFlagID, | ||
| 58 | PBXExecutablesDataSource_NameID, | ||
| 59 | PBXExecutablesDataSource_CommentsID, | ||
| 60 | ); | ||
| 61 | }; | ||
| 62 | PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { | ||
| 63 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; | ||
| 64 | PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; | ||
| 65 | PBXFileTableDataSourceColumnWidthsKey = ( | ||
| 66 | 20, | ||
| 67 | 416, | ||
| 68 | 20, | ||
| 69 | 48, | ||
| 70 | 43, | ||
| 71 | 43, | ||
| 72 | 20, | ||
| 73 | ); | ||
| 74 | PBXFileTableDataSourceColumnsKey = ( | ||
| 75 | PBXFileDataSource_FiletypeID, | ||
| 76 | PBXFileDataSource_Filename_ColumnID, | ||
| 77 | PBXFileDataSource_Built_ColumnID, | ||
| 78 | PBXFileDataSource_ObjectSize_ColumnID, | ||
| 79 | PBXFileDataSource_Errors_ColumnID, | ||
| 80 | PBXFileDataSource_Warnings_ColumnID, | ||
| 81 | PBXFileDataSource_Target_ColumnID, | ||
| 82 | ); | ||
| 83 | }; | ||
| 84 | PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = { | ||
| 85 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; | ||
| 86 | PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; | ||
| 87 | PBXFileTableDataSourceColumnWidthsKey = ( | ||
| 88 | 20, | ||
| 89 | 200, | ||
| 90 | 230, | ||
| 91 | 20, | ||
| 92 | 48, | ||
| 93 | 43, | ||
| 94 | 43, | ||
| 95 | ); | ||
| 96 | PBXFileTableDataSourceColumnsKey = ( | ||
| 97 | PBXFileDataSource_FiletypeID, | ||
| 98 | PBXFileDataSource_Filename_ColumnID, | ||
| 99 | PBXTargetDataSource_PrimaryAttribute, | ||
| 100 | PBXFileDataSource_Built_ColumnID, | ||
| 101 | PBXFileDataSource_ObjectSize_ColumnID, | ||
| 102 | PBXFileDataSource_Errors_ColumnID, | ||
| 103 | PBXFileDataSource_Warnings_ColumnID, | ||
| 104 | ); | ||
| 105 | }; | ||
| 106 | PBXPerProjectTemplateStateSaveDate = 239090487; | ||
| 107 | PBXWorkspaceStateSaveDate = 239090487; | ||
| 108 | }; | ||
| 109 | perUserProjectItems = { | ||
| 110 | 27BD9DD90E403B640056C472 /* PBXTextBookmark */ = 27BD9DD90E403B640056C472 /* PBXTextBookmark */; | ||
| 111 | 27BD9DDA0E403B640056C472 /* PBXTextBookmark */ = 27BD9DDA0E403B640056C472 /* PBXTextBookmark */; | ||
| 112 | 27BD9DDB0E403B640056C472 /* PBXTextBookmark */ = 27BD9DDB0E403B640056C472 /* PBXTextBookmark */; | ||
| 113 | 27BD9DEE0E403C960056C472 /* PBXTextBookmark */ = 27BD9DEE0E403C960056C472 /* PBXTextBookmark */; | ||
| 114 | }; | ||
| 115 | sourceControlManager = 27602E600C2F36D60086E627 /* Source Control */; | ||
| 116 | userBuildSettings = { | ||
| 117 | }; | ||
| 118 | }; | ||
| 119 | 27280DE10C495CCB000FD317 /* gluax_static.c:667 */ = { | ||
| 120 | isa = PBXFileBreakpoint; | ||
| 121 | actions = ( | ||
| 122 | ); | ||
| 123 | breakpointStyle = 0; | ||
| 124 | continueAfterActions = 0; | ||
| 125 | countType = 0; | ||
| 126 | delayBeforeContinue = 0; | ||
| 127 | fileReference = 27602E620C2F37390086E627 /* gluax_static.c */; | ||
| 128 | hitCount = 0; | ||
| 129 | ignoreCount = 0; | ||
| 130 | lineNumber = 667; | ||
| 131 | modificationTime = 239090794.843809; | ||
| 132 | state = 1; | ||
| 133 | }; | ||
| 134 | 27280DE60C495D0C000FD317 /* gluax_static.c:663 */ = { | ||
| 135 | isa = PBXFileBreakpoint; | ||
| 136 | actions = ( | ||
| 137 | ); | ||
| 138 | breakpointStyle = 0; | ||
| 139 | continueAfterActions = 0; | ||
| 140 | countType = 0; | ||
| 141 | delayBeforeContinue = 0; | ||
| 142 | fileReference = 27602E620C2F37390086E627 /* gluax_static.c */; | ||
| 143 | hitCount = 0; | ||
| 144 | ignoreCount = 0; | ||
| 145 | lineNumber = 663; | ||
| 146 | modificationTime = 239090794.844094; | ||
| 147 | state = 1; | ||
| 148 | }; | ||
| 149 | 273631630CD71FBC00A12F3E /* lanes.c:1429 */ = { | ||
| 150 | isa = PBXFileBreakpoint; | ||
| 151 | actions = ( | ||
| 152 | ); | ||
| 153 | breakpointStyle = 0; | ||
| 154 | continueAfterActions = 0; | ||
| 155 | countType = 0; | ||
| 156 | delayBeforeContinue = 0; | ||
| 157 | fileReference = 279F2E690C4A463C0020A321 /* lanes.c */; | ||
| 158 | functionName = "GLUA_FUNC()"; | ||
| 159 | hitCount = 0; | ||
| 160 | ignoreCount = 0; | ||
| 161 | lineNumber = 1429; | ||
| 162 | modificationTime = 239090794.843223; | ||
| 163 | state = 1; | ||
| 164 | }; | ||
| 165 | 274A5EFC0C2F41FB000A66CF /* Lua 5.1 */ = { | ||
| 166 | isa = PBXExecutable; | ||
| 167 | activeArgIndices = ( | ||
| 168 | NO, | ||
| 169 | YES, | ||
| 170 | ); | ||
| 171 | argumentStrings = ( | ||
| 172 | "-lstrict ../fibonacci.lua", | ||
| 173 | tests/basic.lua, | ||
| 174 | ); | ||
| 175 | autoAttachOnCrash = 1; | ||
| 176 | breakpointsEnabled = 1; | ||
| 177 | configStateDict = { | ||
| 178 | "PBXLSLaunchAction-0" = { | ||
| 179 | PBXLSLaunchAction = 0; | ||
| 180 | PBXLSLaunchStartAction = 1; | ||
| 181 | PBXLSLaunchStdioStyle = 2; | ||
| 182 | PBXLSLaunchStyle = 0; | ||
| 183 | class = PBXLSRunLaunchConfig; | ||
| 184 | commandLineArgs = ( | ||
| 185 | ); | ||
| 186 | displayName = "Executable Runner"; | ||
| 187 | environment = { | ||
| 188 | }; | ||
| 189 | identifier = com.apple.Xcode.launch.runConfig; | ||
| 190 | remoteHostInfo = ""; | ||
| 191 | startActionInfo = ""; | ||
| 192 | }; | ||
| 193 | }; | ||
| 194 | customDataFormattersEnabled = 1; | ||
| 195 | debuggerPlugin = GDBDebugging; | ||
| 196 | disassemblyDisplayState = 0; | ||
| 197 | dylibVariantSuffix = ""; | ||
| 198 | enableDebugStr = 1; | ||
| 199 | environmentEntries = ( | ||
| 200 | { | ||
| 201 | active = YES; | ||
| 202 | name = LUA_PATH; | ||
| 203 | value = "src/?.lua;/sw/share/lua/5.1/?.lua"; | ||
| 204 | }, | ||
| 205 | { | ||
| 206 | active = YES; | ||
| 207 | name = LUA_CPATH; | ||
| 208 | value = "xcode/build/Debug/lib?.bundle"; | ||
| 209 | }, | ||
| 210 | ); | ||
| 211 | executableSystemSymbolLevel = 0; | ||
| 212 | executableUserSymbolLevel = 0; | ||
| 213 | launchableReference = 274A5EFD0C2F41FB000A66CF /* lua */; | ||
| 214 | libgmallocEnabled = 0; | ||
| 215 | name = "Lua 5.1"; | ||
| 216 | savedGlobals = { | ||
| 217 | }; | ||
| 218 | sourceDirectories = ( | ||
| 219 | ); | ||
| 220 | startupPath = /Users/abisoft/Slug/public/2008/Lanes/; | ||
| 221 | variableFormatDictionary = { | ||
| 222 | }; | ||
| 223 | }; | ||
| 224 | 274A5EFD0C2F41FB000A66CF /* lua */ = { | ||
| 225 | isa = PBXFileReference; | ||
| 226 | explicitFileType = "compiled.mach-o.executable"; | ||
| 227 | name = lua; | ||
| 228 | path = /sw/bin/lua; | ||
| 229 | sourceTree = "<absolute>"; | ||
| 230 | }; | ||
| 231 | 27602E600C2F36D60086E627 /* Source Control */ = { | ||
| 232 | isa = PBXSourceControlManager; | ||
| 233 | fallbackIsa = XCSourceControlManager; | ||
| 234 | isSCMEnabled = 0; | ||
| 235 | scmConfiguration = { | ||
| 236 | }; | ||
| 237 | scmType = ""; | ||
| 238 | }; | ||
| 239 | 27602E610C2F36D60086E627 /* Code sense */ = { | ||
| 240 | isa = PBXCodeSenseManager; | ||
| 241 | indexTemplatePath = ""; | ||
| 242 | }; | ||
| 243 | 27602E620C2F37390086E627 /* gluax_static.c */ = { | ||
| 244 | isa = PBXFileReference; | ||
| 245 | fileEncoding = 30; | ||
| 246 | lastKnownFileType = sourcecode.c.c; | ||
| 247 | name = gluax_static.c; | ||
| 248 | path = /Users/abisoft/Slug/public/2008/gluax/gluax_static.c; | ||
| 249 | sourceTree = "<absolute>"; | ||
| 250 | }; | ||
| 251 | 27602E640C2F37390086E627 /* gluax.c */ = { | ||
| 252 | isa = PBXFileReference; | ||
| 253 | fileEncoding = 30; | ||
| 254 | lastKnownFileType = sourcecode.c.c; | ||
| 255 | name = gluax.c; | ||
| 256 | path = /Users/abisoft/Slug/public/2008/gluax/gluax.c; | ||
| 257 | sourceTree = "<absolute>"; | ||
| 258 | }; | ||
| 259 | 27602E660C2F37390086E627 /* sdl_module.cpp */ = { | ||
| 260 | isa = PBXFileReference; | ||
| 261 | fileEncoding = 30; | ||
| 262 | lastKnownFileType = sourcecode.cpp.cpp; | ||
| 263 | name = sdl_module.cpp; | ||
| 264 | path = /Users/abisoft/Slug/public/2007/Lanes/sdl_module.cpp; | ||
| 265 | sourceTree = "<absolute>"; | ||
| 266 | }; | ||
| 267 | 277CF6980C4A631C0044B79E /* gluax.c:2476 */ = { | ||
| 268 | isa = PBXFileBreakpoint; | ||
| 269 | actions = ( | ||
| 270 | ); | ||
| 271 | breakpointStyle = 0; | ||
| 272 | continueAfterActions = 0; | ||
| 273 | countType = 0; | ||
| 274 | delayBeforeContinue = 0; | ||
| 275 | fileReference = 27602E640C2F37390086E627 /* gluax.c */; | ||
| 276 | hitCount = 0; | ||
| 277 | ignoreCount = 0; | ||
| 278 | lineNumber = 2476; | ||
| 279 | modificationTime = 239090794.84353; | ||
| 280 | state = 1; | ||
| 281 | }; | ||
| 282 | 2784DBE20CD64B1000B13CF3 /* gluax_static.c:164 */ = { | ||
| 283 | isa = PBXFileBreakpoint; | ||
| 284 | actions = ( | ||
| 285 | ); | ||
| 286 | breakpointStyle = 0; | ||
| 287 | continueAfterActions = 0; | ||
| 288 | countType = 0; | ||
| 289 | delayBeforeContinue = 0; | ||
| 290 | fileReference = 27602E620C2F37390086E627 /* gluax_static.c */; | ||
| 291 | functionName = "Loc_PushMetatableRef_()"; | ||
| 292 | hitCount = 0; | ||
| 293 | ignoreCount = 0; | ||
| 294 | lineNumber = 164; | ||
| 295 | modificationTime = 239090794.842868; | ||
| 296 | state = 1; | ||
| 297 | }; | ||
| 298 | 279F2E690C4A463C0020A321 /* lanes.c */ = { | ||
| 299 | isa = PBXFileReference; | ||
| 300 | fileEncoding = 30; | ||
| 301 | lastKnownFileType = sourcecode.c.c; | ||
| 302 | name = lanes.c; | ||
| 303 | path = /Users/abisoft/Slug/public/2008/Lanes/lanes.c; | ||
| 304 | sourceTree = "<absolute>"; | ||
| 305 | }; | ||
| 306 | 27ACDA660E4031F6004F5C28 /* lanes.c */ = { | ||
| 307 | uiCtxt = { | ||
| 308 | sepNavIntBoundsRect = "{{0, 0}, {822, 17500}}"; | ||
| 309 | sepNavSelRange = "{31197, 0}"; | ||
| 310 | sepNavVisRange = "{30733, 1064}"; | ||
| 311 | sepNavWindowFrame = "{{86, 51}, {1052, 971}}"; | ||
| 312 | }; | ||
| 313 | }; | ||
| 314 | 27ACDA680E4031F6004F5C28 /* tools.c */ = { | ||
| 315 | uiCtxt = { | ||
| 316 | sepNavIntBoundsRect = "{{0, 0}, {594, 13790}}"; | ||
| 317 | sepNavSelRange = "{0, 0}"; | ||
| 318 | sepNavVisRange = "{0, 1259}"; | ||
| 319 | }; | ||
| 320 | }; | ||
| 321 | 27BD9DD60E403B490056C472 /* lanes.c:1168 */ = { | ||
| 322 | isa = PBXFileBreakpoint; | ||
| 323 | actions = ( | ||
| 324 | ); | ||
| 325 | breakpointStyle = 0; | ||
| 326 | continueAfterActions = 0; | ||
| 327 | countType = 0; | ||
| 328 | delayBeforeContinue = 0; | ||
| 329 | fileReference = 27ACDA660E4031F6004F5C28 /* lanes.c */; | ||
| 330 | functionName = "luaopen_lanes()"; | ||
| 331 | hitCount = 1; | ||
| 332 | ignoreCount = 0; | ||
| 333 | lineNumber = 1168; | ||
| 334 | location = "liblua51-lanes.bundle"; | ||
| 335 | modificationTime = 239090520.812976; | ||
| 336 | state = 1; | ||
| 337 | }; | ||
| 338 | 27BD9DD90E403B640056C472 /* PBXTextBookmark */ = { | ||
| 339 | isa = PBXTextBookmark; | ||
| 340 | fRef = 27ACDA680E4031F6004F5C28 /* tools.c */; | ||
| 341 | name = "tools.c: 1"; | ||
| 342 | rLen = 0; | ||
| 343 | rLoc = 0; | ||
| 344 | rType = 0; | ||
| 345 | vrLen = 1259; | ||
| 346 | vrLoc = 0; | ||
| 347 | }; | ||
| 348 | 27BD9DDA0E403B640056C472 /* PBXTextBookmark */ = { | ||
| 349 | isa = PBXTextBookmark; | ||
| 350 | fRef = 27ACDA660E4031F6004F5C28 /* lanes.c */; | ||
| 351 | rLen = 0; | ||
| 352 | rLoc = 1167; | ||
| 353 | rType = 1; | ||
| 354 | }; | ||
| 355 | 27BD9DDB0E403B640056C472 /* PBXTextBookmark */ = { | ||
| 356 | isa = PBXTextBookmark; | ||
| 357 | fRef = 27ACDA680E4031F6004F5C28 /* tools.c */; | ||
| 358 | name = "tools.c: 1"; | ||
| 359 | rLen = 0; | ||
| 360 | rLoc = 0; | ||
| 361 | rType = 0; | ||
| 362 | vrLen = 1259; | ||
| 363 | vrLoc = 0; | ||
| 364 | }; | ||
| 365 | 27BD9DEB0E403C250056C472 /* lanes.c:1246 */ = { | ||
| 366 | isa = PBXFileBreakpoint; | ||
| 367 | actions = ( | ||
| 368 | ); | ||
| 369 | breakpointStyle = 0; | ||
| 370 | continueAfterActions = 0; | ||
| 371 | countType = 0; | ||
| 372 | delayBeforeContinue = 0; | ||
| 373 | fileReference = 27ACDA660E4031F6004F5C28 /* lanes.c */; | ||
| 374 | functionName = "luaopen_lanes()"; | ||
| 375 | hitCount = 0; | ||
| 376 | ignoreCount = 0; | ||
| 377 | lineNumber = 1246; | ||
| 378 | location = "liblua51-lanes.bundle"; | ||
| 379 | modificationTime = 239090725.673196; | ||
| 380 | state = 1; | ||
| 381 | }; | ||
| 382 | 27BD9DEE0E403C960056C472 /* PBXTextBookmark */ = { | ||
| 383 | isa = PBXTextBookmark; | ||
| 384 | fRef = 27ACDA660E4031F6004F5C28 /* lanes.c */; | ||
| 385 | name = "lanes.c: 1168"; | ||
| 386 | rLen = 0; | ||
| 387 | rLoc = 31197; | ||
| 388 | rType = 0; | ||
| 389 | vrLen = 1064; | ||
| 390 | vrLoc = 30733; | ||
| 391 | }; | ||
| 392 | 27E802B50C4978C700B1E216 /* sdl_module.cpp:630 */ = { | ||
| 393 | isa = PBXFileBreakpoint; | ||
| 394 | actions = ( | ||
| 395 | ); | ||
| 396 | breakpointStyle = 0; | ||
| 397 | continueAfterActions = 0; | ||
| 398 | countType = 0; | ||
| 399 | delayBeforeContinue = 0; | ||
| 400 | fileReference = 27602E660C2F37390086E627 /* sdl_module.cpp */; | ||
| 401 | functionName = "GLUA_FUNC()"; | ||
| 402 | hitCount = 0; | ||
| 403 | ignoreCount = 0; | ||
| 404 | lineNumber = 630; | ||
| 405 | modificationTime = 239090794.842249; | ||
| 406 | state = 1; | ||
| 407 | }; | ||
| 408 | D2AAC0620554660B00DB518D /* xcode */ = { | ||
| 409 | activeExec = 0; | ||
| 410 | }; | ||
| 411 | } | ||
diff --git a/xcode/xcode.xcodeproj/project.pbxproj b/xcode/xcode.xcodeproj/project.pbxproj deleted file mode 100644 index d3b3442..0000000 --- a/xcode/xcode.xcodeproj/project.pbxproj +++ /dev/null | |||
| @@ -1,268 +0,0 @@ | |||
| 1 | // !$*UTF8*$! | ||
| 2 | { | ||
| 3 | archiveVersion = 1; | ||
| 4 | classes = { | ||
| 5 | }; | ||
| 6 | objectVersion = 42; | ||
| 7 | objects = { | ||
| 8 | |||
| 9 | /* Begin PBXBuildFile section */ | ||
| 10 | 27602E840C2F3CA40086E627 /* liblua.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 27602E830C2F3CA40086E627 /* liblua.dylib */; }; | ||
| 11 | 27ACDA690E4031F6004F5C28 /* lanes.c in Sources */ = {isa = PBXBuildFile; fileRef = 27ACDA660E4031F6004F5C28 /* lanes.c */; }; | ||
| 12 | 27ACDA6A0E4031F6004F5C28 /* threading.c in Sources */ = {isa = PBXBuildFile; fileRef = 27ACDA670E4031F6004F5C28 /* threading.c */; }; | ||
| 13 | 27ACDA6B0E4031F6004F5C28 /* tools.c in Sources */ = {isa = PBXBuildFile; fileRef = 27ACDA680E4031F6004F5C28 /* tools.c */; }; | ||
| 14 | /* End PBXBuildFile section */ | ||
| 15 | |||
| 16 | /* Begin PBXFileReference section */ | ||
| 17 | 27602E830C2F3CA40086E627 /* liblua.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = liblua.dylib; path = /sw/lib/liblua.dylib; sourceTree = "<absolute>"; }; | ||
| 18 | 279F2E7B0C4A477B0020A321 /* liblua51-lanes.bundle */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = "liblua51-lanes.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
| 19 | 27ACDA660E4031F6004F5C28 /* lanes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = lanes.c; path = ../src/lanes.c; sourceTree = SOURCE_ROOT; }; | ||
| 20 | 27ACDA670E4031F6004F5C28 /* threading.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = threading.c; path = ../src/threading.c; sourceTree = SOURCE_ROOT; }; | ||
| 21 | 27ACDA680E4031F6004F5C28 /* tools.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tools.c; path = ../src/tools.c; sourceTree = SOURCE_ROOT; }; | ||
| 22 | /* End PBXFileReference section */ | ||
| 23 | |||
| 24 | /* Begin PBXFrameworksBuildPhase section */ | ||
| 25 | D289988505E68E00004EDB86 /* Frameworks */ = { | ||
| 26 | isa = PBXFrameworksBuildPhase; | ||
| 27 | buildActionMask = 2147483647; | ||
| 28 | files = ( | ||
| 29 | 27602E840C2F3CA40086E627 /* liblua.dylib in Frameworks */, | ||
| 30 | ); | ||
| 31 | runOnlyForDeploymentPostprocessing = 0; | ||
| 32 | }; | ||
| 33 | /* End PBXFrameworksBuildPhase section */ | ||
| 34 | |||
| 35 | /* Begin PBXGroup section */ | ||
| 36 | 08FB7794FE84155DC02AAC07 /* xcode */ = { | ||
| 37 | isa = PBXGroup; | ||
| 38 | children = ( | ||
| 39 | 27602E830C2F3CA40086E627 /* liblua.dylib */, | ||
| 40 | 08FB7795FE84155DC02AAC07 /* Source */, | ||
| 41 | 1AB674ADFE9D54B511CA2CBB /* Products */, | ||
| 42 | ); | ||
| 43 | comments = "\nTo use this XCode project, set \"active build configuration\" to Debug.\n\nYou may need to add \"custom executable\" to the \"Executables\" tree of the project, with:\n- path /sw/bin/lua\n- custom directory /Users/xxx/.../SDL/\n- arguments \"test.lua\"\n- environment LUA_CPATH xcode/build/Debug/lib?.bundle\n- \n\n---\nAK 25.6.2007 (open):\n\nHow to NOT have the \"lib\" prefix for bundles? Tried everything, still XCode places it there. :((\n\n /usr/bin/g++-4.0 -o /Users/abisoft/Slug/public/2007/SDL/xcode/build/Debug/liblua51-sdl.bundle ...\n\nHave to change the LUA_CPATH instead, so we can debug with this.\n\n---\nAK 25.6.2007 (solved):\nAfter changing dylib->bundle there were some issues, same as:\nhttp://osdir.com/ml/lang.realbasic.plugins/2007-01/msg00033.html\n\n\"Perform single-object prelink\" needs to be ticked.\n"; | ||
| 44 | name = xcode; | ||
| 45 | sourceTree = "<group>"; | ||
| 46 | }; | ||
| 47 | 08FB7795FE84155DC02AAC07 /* Source */ = { | ||
| 48 | isa = PBXGroup; | ||
| 49 | children = ( | ||
| 50 | 27ACDA660E4031F6004F5C28 /* lanes.c */, | ||
| 51 | 27ACDA670E4031F6004F5C28 /* threading.c */, | ||
| 52 | 27ACDA680E4031F6004F5C28 /* tools.c */, | ||
| 53 | ); | ||
| 54 | name = Source; | ||
| 55 | sourceTree = "<group>"; | ||
| 56 | }; | ||
| 57 | 1AB674ADFE9D54B511CA2CBB /* Products */ = { | ||
| 58 | isa = PBXGroup; | ||
| 59 | children = ( | ||
| 60 | 279F2E7B0C4A477B0020A321 /* liblua51-lanes.bundle */, | ||
| 61 | ); | ||
| 62 | name = Products; | ||
| 63 | sourceTree = "<group>"; | ||
| 64 | }; | ||
| 65 | /* End PBXGroup section */ | ||
| 66 | |||
| 67 | /* Begin PBXHeadersBuildPhase section */ | ||
| 68 | D2AAC0600554660B00DB518D /* Headers */ = { | ||
| 69 | isa = PBXHeadersBuildPhase; | ||
| 70 | buildActionMask = 2147483647; | ||
| 71 | files = ( | ||
| 72 | ); | ||
| 73 | runOnlyForDeploymentPostprocessing = 0; | ||
| 74 | }; | ||
| 75 | /* End PBXHeadersBuildPhase section */ | ||
| 76 | |||
| 77 | /* Begin PBXNativeTarget section */ | ||
| 78 | D2AAC0620554660B00DB518D /* xcode */ = { | ||
| 79 | isa = PBXNativeTarget; | ||
| 80 | buildConfigurationList = 1DEB914A08733D8E0010E9CD /* Build configuration list for PBXNativeTarget "xcode" */; | ||
| 81 | buildPhases = ( | ||
| 82 | D2AAC0600554660B00DB518D /* Headers */, | ||
| 83 | D2AAC0610554660B00DB518D /* Sources */, | ||
| 84 | D289988505E68E00004EDB86 /* Frameworks */, | ||
| 85 | ); | ||
| 86 | buildRules = ( | ||
| 87 | ); | ||
| 88 | dependencies = ( | ||
| 89 | ); | ||
| 90 | name = xcode; | ||
| 91 | productName = xcode; | ||
| 92 | productReference = 279F2E7B0C4A477B0020A321 /* liblua51-lanes.bundle */; | ||
| 93 | productType = "com.apple.product-type.library.dynamic"; | ||
| 94 | }; | ||
| 95 | /* End PBXNativeTarget section */ | ||
| 96 | |||
| 97 | /* Begin PBXProject section */ | ||
| 98 | 08FB7793FE84155DC02AAC07 /* Project object */ = { | ||
| 99 | isa = PBXProject; | ||
| 100 | buildConfigurationList = 1DEB914E08733D8E0010E9CD /* Build configuration list for PBXProject "xcode" */; | ||
| 101 | compatibilityVersion = "Xcode 2.4"; | ||
| 102 | hasScannedForEncodings = 1; | ||
| 103 | mainGroup = 08FB7794FE84155DC02AAC07 /* xcode */; | ||
| 104 | projectDirPath = ""; | ||
| 105 | projectRoot = ""; | ||
| 106 | targets = ( | ||
| 107 | D2AAC0620554660B00DB518D /* xcode */, | ||
| 108 | ); | ||
| 109 | }; | ||
| 110 | /* End PBXProject section */ | ||
| 111 | |||
| 112 | /* Begin PBXSourcesBuildPhase section */ | ||
| 113 | D2AAC0610554660B00DB518D /* Sources */ = { | ||
| 114 | isa = PBXSourcesBuildPhase; | ||
| 115 | buildActionMask = 2147483647; | ||
| 116 | files = ( | ||
| 117 | 27ACDA690E4031F6004F5C28 /* lanes.c in Sources */, | ||
| 118 | 27ACDA6A0E4031F6004F5C28 /* threading.c in Sources */, | ||
| 119 | 27ACDA6B0E4031F6004F5C28 /* tools.c in Sources */, | ||
| 120 | ); | ||
| 121 | runOnlyForDeploymentPostprocessing = 0; | ||
| 122 | }; | ||
| 123 | /* End PBXSourcesBuildPhase section */ | ||
| 124 | |||
| 125 | /* Begin XCBuildConfiguration section */ | ||
| 126 | 1DEB914B08733D8E0010E9CD /* Debug */ = { | ||
| 127 | isa = XCBuildConfiguration; | ||
| 128 | buildSettings = { | ||
| 129 | COPY_PHASE_STRIP = NO; | ||
| 130 | EXECUTABLE_PREFIX = lib; | ||
| 131 | GCC_DYNAMIC_NO_PIC = NO; | ||
| 132 | GCC_ENABLE_FIX_AND_CONTINUE = YES; | ||
| 133 | GCC_MODEL_TUNING = G5; | ||
| 134 | GCC_OPTIMIZATION_LEVEL = 0; | ||
| 135 | INSTALL_PATH = /usr/local/lib; | ||
| 136 | LIBRARY_SEARCH_PATHS = ( | ||
| 137 | "$(inherited)", | ||
| 138 | /sw/lib, | ||
| 139 | ); | ||
| 140 | PRODUCT_NAME = "lua51-lanes"; | ||
| 141 | ZERO_LINK = NO; | ||
| 142 | }; | ||
| 143 | name = Debug; | ||
| 144 | }; | ||
| 145 | 1DEB914C08733D8E0010E9CD /* Release */ = { | ||
| 146 | isa = XCBuildConfiguration; | ||
| 147 | buildSettings = { | ||
| 148 | ARCHS = ( | ||
| 149 | ppc, | ||
| 150 | i386, | ||
| 151 | ); | ||
| 152 | COPY_PHASE_STRIP = NO; | ||
| 153 | EXECUTABLE_PREFIX = lib; | ||
| 154 | GCC_GENERATE_DEBUGGING_SYMBOLS = NO; | ||
| 155 | GCC_MODEL_TUNING = G5; | ||
| 156 | INSTALL_PATH = /usr/local/lib; | ||
| 157 | LIBRARY_SEARCH_PATHS = ( | ||
| 158 | "$(inherited)", | ||
| 159 | /sw/lib, | ||
| 160 | ); | ||
| 161 | PRODUCT_NAME = "lua51-lanes"; | ||
| 162 | ZERO_LINK = NO; | ||
| 163 | }; | ||
| 164 | name = Release; | ||
| 165 | }; | ||
| 166 | 1DEB914F08733D8E0010E9CD /* Debug */ = { | ||
| 167 | isa = XCBuildConfiguration; | ||
| 168 | buildSettings = { | ||
| 169 | BUNDLE_LOADER = /sw/bin/lua; | ||
| 170 | DYLIB_COMPATIBILITY_VERSION = ""; | ||
| 171 | DYLIB_CURRENT_VERSION = ""; | ||
| 172 | EXECUTABLE_EXTENSION = bundle; | ||
| 173 | EXECUTABLE_PREFIX = ""; | ||
| 174 | GCC_ENABLE_CPP_EXCEPTIONS = NO; | ||
| 175 | GCC_ENABLE_CPP_RTTI = NO; | ||
| 176 | GCC_PREPROCESSOR_DEFINITIONS = ( | ||
| 177 | GLUA_LUA51, | ||
| 178 | "_GNU_SOURCE=1", | ||
| 179 | _THREAD_SAFE, | ||
| 180 | ); | ||
| 181 | GCC_WARN_ABOUT_RETURN_TYPE = YES; | ||
| 182 | GCC_WARN_PEDANTIC = NO; | ||
| 183 | GCC_WARN_UNUSED_VARIABLE = YES; | ||
| 184 | GENERATE_MASTER_OBJECT_FILE = YES; | ||
| 185 | HEADER_SEARCH_PATHS = ( | ||
| 186 | ../../gluax, | ||
| 187 | /sw/include, | ||
| 188 | ); | ||
| 189 | LIBRARY_SEARCH_PATHS = /sw/lib; | ||
| 190 | MACH_O_TYPE = mh_bundle; | ||
| 191 | OTHER_LDFLAGS = ( | ||
| 192 | "-framework", | ||
| 193 | Cocoa, | ||
| 194 | ); | ||
| 195 | PREBINDING = NO; | ||
| 196 | PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO; | ||
| 197 | PRELINK_LIBS = ""; | ||
| 198 | PRODUCT_NAME = "lua51-lanes"; | ||
| 199 | SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = YES; | ||
| 200 | SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; | ||
| 201 | SHARED_PRECOMPS_DIR = ""; | ||
| 202 | }; | ||
| 203 | name = Debug; | ||
| 204 | }; | ||
| 205 | 1DEB915008733D8E0010E9CD /* Release */ = { | ||
| 206 | isa = XCBuildConfiguration; | ||
| 207 | buildSettings = { | ||
| 208 | BUNDLE_LOADER = /sw/bin/lua; | ||
| 209 | DYLIB_COMPATIBILITY_VERSION = ""; | ||
| 210 | DYLIB_CURRENT_VERSION = ""; | ||
| 211 | EXECUTABLE_EXTENSION = bundle; | ||
| 212 | EXECUTABLE_PREFIX = ""; | ||
| 213 | GCC_ENABLE_CPP_EXCEPTIONS = NO; | ||
| 214 | GCC_ENABLE_CPP_RTTI = NO; | ||
| 215 | GCC_PREPROCESSOR_DEFINITIONS = ( | ||
| 216 | GLUA_LUA51, | ||
| 217 | "_GNU_SOURCE=1", | ||
| 218 | _THREAD_SAFE, | ||
| 219 | ); | ||
| 220 | GCC_WARN_ABOUT_RETURN_TYPE = YES; | ||
| 221 | GCC_WARN_PEDANTIC = NO; | ||
| 222 | GCC_WARN_UNUSED_VARIABLE = YES; | ||
| 223 | GENERATE_MASTER_OBJECT_FILE = YES; | ||
| 224 | HEADER_SEARCH_PATHS = ( | ||
| 225 | ../../gluax, | ||
| 226 | /sw/include, | ||
| 227 | ); | ||
| 228 | LIBRARY_SEARCH_PATHS = /sw/lib; | ||
| 229 | MACH_O_TYPE = mh_bundle; | ||
| 230 | OTHER_LDFLAGS = ( | ||
| 231 | "-framework", | ||
| 232 | Cocoa, | ||
| 233 | ); | ||
| 234 | PREBINDING = NO; | ||
| 235 | PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO; | ||
| 236 | PRELINK_LIBS = ""; | ||
| 237 | PRODUCT_NAME = "lua51-lanes"; | ||
| 238 | SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = YES; | ||
| 239 | SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; | ||
| 240 | SHARED_PRECOMPS_DIR = ""; | ||
| 241 | }; | ||
| 242 | name = Release; | ||
| 243 | }; | ||
| 244 | /* End XCBuildConfiguration section */ | ||
| 245 | |||
| 246 | /* Begin XCConfigurationList section */ | ||
| 247 | 1DEB914A08733D8E0010E9CD /* Build configuration list for PBXNativeTarget "xcode" */ = { | ||
| 248 | isa = XCConfigurationList; | ||
| 249 | buildConfigurations = ( | ||
| 250 | 1DEB914B08733D8E0010E9CD /* Debug */, | ||
| 251 | 1DEB914C08733D8E0010E9CD /* Release */, | ||
| 252 | ); | ||
| 253 | defaultConfigurationIsVisible = 0; | ||
| 254 | defaultConfigurationName = Release; | ||
| 255 | }; | ||
| 256 | 1DEB914E08733D8E0010E9CD /* Build configuration list for PBXProject "xcode" */ = { | ||
| 257 | isa = XCConfigurationList; | ||
| 258 | buildConfigurations = ( | ||
| 259 | 1DEB914F08733D8E0010E9CD /* Debug */, | ||
| 260 | 1DEB915008733D8E0010E9CD /* Release */, | ||
| 261 | ); | ||
| 262 | defaultConfigurationIsVisible = 0; | ||
| 263 | defaultConfigurationName = Release; | ||
| 264 | }; | ||
| 265 | /* End XCConfigurationList section */ | ||
| 266 | }; | ||
| 267 | rootObject = 08FB7793FE84155DC02AAC07 /* Project object */; | ||
| 268 | } | ||
diff --git a/xcode/xcode.xcodeproj/soumya.pbxuser b/xcode/xcode.xcodeproj/soumya.pbxuser deleted file mode 100644 index 20ae264..0000000 --- a/xcode/xcode.xcodeproj/soumya.pbxuser +++ /dev/null | |||
| @@ -1,124 +0,0 @@ | |||
| 1 | // !$*UTF8*$! | ||
| 2 | { | ||
| 3 | 0429C3740C416BB800EC1476 /* Source Control */ = { | ||
| 4 | isa = PBXSourceControlManager; | ||
| 5 | fallbackIsa = XCSourceControlManager; | ||
| 6 | isSCMEnabled = 0; | ||
| 7 | scmConfiguration = { | ||
| 8 | }; | ||
| 9 | scmType = ""; | ||
| 10 | }; | ||
| 11 | 0429C3750C416BB800EC1476 /* Code sense */ = { | ||
| 12 | isa = PBXCodeSenseManager; | ||
| 13 | indexTemplatePath = ""; | ||
| 14 | }; | ||
| 15 | 04C412EF0C42B7D500A0AD77 /* Lua */ = { | ||
| 16 | isa = PBXExecutable; | ||
| 17 | activeArgIndex = 0; | ||
| 18 | activeArgIndices = ( | ||
| 19 | YES, | ||
| 20 | ); | ||
| 21 | argumentStrings = ( | ||
| 22 | test.lua, | ||
| 23 | ); | ||
| 24 | autoAttachOnCrash = 1; | ||
| 25 | comments = "This is not stored in svn, is it?\n"; | ||
| 26 | configStateDict = { | ||
| 27 | "PBXLSLaunchAction-0" = { | ||
| 28 | PBXLSLaunchAction = 0; | ||
| 29 | PBXLSLaunchStartAction = 1; | ||
| 30 | PBXLSLaunchStdioStyle = 2; | ||
| 31 | PBXLSLaunchStyle = 0; | ||
| 32 | class = PBXLSRunLaunchConfig; | ||
| 33 | displayName = "Executable Runner"; | ||
| 34 | identifier = com.apple.Xcode.launch.runConfig; | ||
| 35 | remoteHostInfo = ""; | ||
| 36 | startActionInfo = ""; | ||
| 37 | }; | ||
| 38 | }; | ||
| 39 | customDataFormattersEnabled = 1; | ||
| 40 | debuggerPlugin = GDBDebugging; | ||
| 41 | disassemblyDisplayState = 0; | ||
| 42 | dylibVariantSuffix = ""; | ||
| 43 | enableDebugStr = 1; | ||
| 44 | environmentEntries = ( | ||
| 45 | { | ||
| 46 | active = YES; | ||
| 47 | name = LUA_CPATH; | ||
| 48 | value = "xcode/build/Debug/lib?.bundle"; | ||
| 49 | }, | ||
| 50 | ); | ||
| 51 | executableSystemSymbolLevel = 0; | ||
| 52 | executableUserSymbolLevel = 0; | ||
| 53 | launchableReference = 04C412F00C42B7D500A0AD77 /* lua */; | ||
| 54 | libgmallocEnabled = 0; | ||
| 55 | name = Lua; | ||
| 56 | savedGlobals = { | ||
| 57 | }; | ||
| 58 | sourceDirectories = ( | ||
| 59 | ); | ||
| 60 | startupPath = /Users/soumya/Slug/public/2007/SDL/; | ||
| 61 | }; | ||
| 62 | 04C412F00C42B7D500A0AD77 /* lua */ = { | ||
| 63 | isa = PBXFileReference; | ||
| 64 | explicitFileType = "compiled.mach-o.executable"; | ||
| 65 | name = lua; | ||
| 66 | path = /sw/bin/lua; | ||
| 67 | sourceTree = "<absolute>"; | ||
| 68 | }; | ||
| 69 | 08FB7793FE84155DC02AAC07 /* Project object */ = { | ||
| 70 | activeBuildConfigurationName = Debug; | ||
| 71 | activeExecutable = 04C412EF0C42B7D500A0AD77 /* Lua */; | ||
| 72 | activeTarget = D2AAC0620554660B00DB518D /* xcode */; | ||
| 73 | codeSenseManager = 0429C3750C416BB800EC1476 /* Code sense */; | ||
| 74 | executables = ( | ||
| 75 | 04C412EF0C42B7D500A0AD77 /* Lua */, | ||
| 76 | ); | ||
| 77 | perUserDictionary = { | ||
| 78 | PBXConfiguration.PBXFileTableDataSource3.PBXExecutablesDataSource = { | ||
| 79 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; | ||
| 80 | PBXFileTableDataSourceColumnSortingKey = PBXExecutablesDataSource_NameID; | ||
| 81 | PBXFileTableDataSourceColumnWidthsKey = ( | ||
| 82 | 22, | ||
| 83 | 300, | ||
| 84 | 225, | ||
| 85 | ); | ||
| 86 | PBXFileTableDataSourceColumnsKey = ( | ||
| 87 | PBXExecutablesDataSource_ActiveFlagID, | ||
| 88 | PBXExecutablesDataSource_NameID, | ||
| 89 | PBXExecutablesDataSource_CommentsID, | ||
| 90 | ); | ||
| 91 | }; | ||
| 92 | PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { | ||
| 93 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; | ||
| 94 | PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; | ||
| 95 | PBXFileTableDataSourceColumnWidthsKey = ( | ||
| 96 | 20, | ||
| 97 | 338, | ||
| 98 | 20, | ||
| 99 | 48, | ||
| 100 | 43, | ||
| 101 | 43, | ||
| 102 | 20, | ||
| 103 | ); | ||
| 104 | PBXFileTableDataSourceColumnsKey = ( | ||
| 105 | PBXFileDataSource_FiletypeID, | ||
| 106 | PBXFileDataSource_Filename_ColumnID, | ||
| 107 | PBXFileDataSource_Built_ColumnID, | ||
| 108 | PBXFileDataSource_ObjectSize_ColumnID, | ||
| 109 | PBXFileDataSource_Errors_ColumnID, | ||
| 110 | PBXFileDataSource_Warnings_ColumnID, | ||
| 111 | PBXFileDataSource_Target_ColumnID, | ||
| 112 | ); | ||
| 113 | }; | ||
| 114 | PBXPerProjectTemplateStateSaveDate = 205699730; | ||
| 115 | PBXWorkspaceStateSaveDate = 205699730; | ||
| 116 | }; | ||
| 117 | sourceControlManager = 0429C3740C416BB800EC1476 /* Source Control */; | ||
| 118 | userBuildSettings = { | ||
| 119 | }; | ||
| 120 | }; | ||
| 121 | D2AAC0620554660B00DB518D /* xcode */ = { | ||
| 122 | activeExec = 0; | ||
| 123 | }; | ||
| 124 | } | ||
