From 0689498727a6cbe1b486deff8d4092b7f276be14 Mon Sep 17 00:00:00 2001 From: mcarans Date: Wed, 15 Apr 2026 09:10:16 +1200 Subject: [PATCH 1/4] Remove Linux-deps, URLs and Mozilla submodules --- .gitmodules | 6 ------ .relative_gitmodules | 9 --------- deps/Linux-deps | 1 - deps/URLs/README | 6 ------ deps/URLs/libpng.url | 3 --- deps/URLs/sparkle.url | 2 -- deps/mozilla | 1 - 7 files changed, 28 deletions(-) delete mode 160000 deps/Linux-deps delete mode 100644 deps/URLs/README delete mode 100644 deps/URLs/libpng.url delete mode 100644 deps/URLs/sparkle.url delete mode 160000 deps/mozilla diff --git a/.gitmodules b/.gitmodules index 2cbe0e53c..f9bd1feb7 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,12 +1,6 @@ [submodule "Resources/Binary"] path = Resources/Binary url = https://github.com/OoliteProject/oolite-binary-resources.git -[submodule "deps/Linux-deps"] - path = deps/Linux-deps - url = https://github.com/OoliteProject/oolite-linux-dependencies.git [submodule "deps/Cross-platform-deps"] path = deps/Cross-platform-deps url = https://github.com/OoliteProject/oolite-sdl-dependencies.git -[submodule "deps/mozilla"] - path = deps/mozilla - url = https://github.com/OoliteProject/spidermonkey-ff4.git diff --git a/.relative_gitmodules b/.relative_gitmodules index 01961b53a..af8e1cc2f 100644 --- a/.relative_gitmodules +++ b/.relative_gitmodules @@ -1,15 +1,6 @@ [submodule "Resources/Binary"] path = Resources/Binary url = ../oolite-binary-resources.git -[submodule "deps/Linux-deps"] - path = deps/Linux-deps - url = ../oolite-linux-dependencies.git [submodule "deps/Cross-platform-deps"] path = deps/Cross-platform-deps url = ../oolite-sdl-dependencies.git -[submodule "deps/mozilla"] - path = deps/mozilla - url = ../spidermonkey-ff4.git -[submodule "deps/Windows-deps"] - path = deps/Windows-deps - url = ../oolite-windows-dependencies.git diff --git a/deps/Linux-deps b/deps/Linux-deps deleted file mode 160000 index ae99ff3f4..000000000 --- a/deps/Linux-deps +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ae99ff3f411505e7ff6e1b44261bf38a0629723f diff --git a/deps/URLs/README b/deps/URLs/README deleted file mode 100644 index aafbd8c89..000000000 --- a/deps/URLs/README +++ /dev/null @@ -1,6 +0,0 @@ -These files contain download URLs for various dependencies. They are used -by the Mac OS X build system to download dependencies automatically (see -deps/Cocoa-deps/scripts). The first line must be an URL which can be -downloaded by curl and expanded by tar. Any additional lines will be -ignored. Currently, the second line is the original URL for files which are -mirrored. diff --git a/deps/URLs/libpng.url b/deps/URLs/libpng.url deleted file mode 100644 index 80e67af4a..000000000 --- a/deps/URLs/libpng.url +++ /dev/null @@ -1,3 +0,0 @@ -http://oolite.org/dependencies/mac/libpng-1.5.13.tar.bz2 -http://jens.ayton.se/oolite/deps/libpng-1.5.13.tar.bz2 -ftp://anonymous@ftp.simplesystems.org/pub/libpng/png/src/libpng-1.5.13.tar.bz2 diff --git a/deps/URLs/sparkle.url b/deps/URLs/sparkle.url deleted file mode 100644 index a6918850f..000000000 --- a/deps/URLs/sparkle.url +++ /dev/null @@ -1,2 +0,0 @@ -http://oolite.org/dependencies/mac/Sparkle%201.5b6.zip -http://sparkle.andymatuschak.org/files/Sparkle%201.5b6.zip diff --git a/deps/mozilla b/deps/mozilla deleted file mode 160000 index c463e95ea..000000000 --- a/deps/mozilla +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c463e95ea5d1d780301e7f3792783771381125f0 From 4c689dbd7856bf759a2420e27766306f43c64796 Mon Sep 17 00:00:00 2001 From: mcarans Date: Wed, 15 Apr 2026 09:52:13 +1200 Subject: [PATCH 2/4] Move mkmanifest.sh to ShellScripts/common Remove deprecated files --- Oolite.xcodeproj/project.pbxproj | 4342 ----------------- .../contents.xcworkspacedata | 7 - .../xcshareddata/WorkspaceSettings.xcsettings | 8 - .../xcschemes/Oolite - Debug.xcscheme | 115 - .../xcschemes/Oolite - Deployment.xcscheme | 130 - .../xcschemes/Oolite - Test Release.xcscheme | 129 - {tools => ShellScripts/common}/mkmanifest.sh | 0 ShellScripts/common/post_build.sh | 2 +- installers/autopackage/HowToInstall.txt | 105 - installers/autopackage/default.x86.apspec | 141 - installers/autopackage/default.x86_64.apspec | 141 - installers/posix/make_installer.sh | 119 - installers/posix/makeself-header.sh | 418 -- installers/posix/makeself.sh | 423 -- installers/posix/setup.body | 383 -- installers/posix/setup.header | 2 - installers/posix/uninstall.source | 199 - tools/mknightly | 88 - tools/mksrctarballs | 77 - tools/mkwininst.sh | 38 - tools/mkwinsnapshotinst.sh | 38 - 21 files changed, 1 insertion(+), 6904 deletions(-) delete mode 100644 Oolite.xcodeproj/project.pbxproj delete mode 100644 Oolite.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 Oolite.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings delete mode 100644 Oolite.xcodeproj/xcshareddata/xcschemes/Oolite - Debug.xcscheme delete mode 100644 Oolite.xcodeproj/xcshareddata/xcschemes/Oolite - Deployment.xcscheme delete mode 100644 Oolite.xcodeproj/xcshareddata/xcschemes/Oolite - Test Release.xcscheme rename {tools => ShellScripts/common}/mkmanifest.sh (100%) delete mode 100644 installers/autopackage/HowToInstall.txt delete mode 100644 installers/autopackage/default.x86.apspec delete mode 100644 installers/autopackage/default.x86_64.apspec delete mode 100755 installers/posix/make_installer.sh delete mode 100755 installers/posix/makeself-header.sh delete mode 100755 installers/posix/makeself.sh delete mode 100644 installers/posix/setup.body delete mode 100644 installers/posix/setup.header delete mode 100644 installers/posix/uninstall.source delete mode 100755 tools/mknightly delete mode 100755 tools/mksrctarballs delete mode 100644 tools/mkwininst.sh delete mode 100644 tools/mkwinsnapshotinst.sh diff --git a/Oolite.xcodeproj/project.pbxproj b/Oolite.xcodeproj/project.pbxproj deleted file mode 100644 index 2106f94d7..000000000 --- a/Oolite.xcodeproj/project.pbxproj +++ /dev/null @@ -1,4342 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 47; - objects = { - -/* Begin PBXAggregateTarget section */ - 1AD267500C83050800B4BFD1 /* Build All */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 1AD267680C8305A200B4BFD1 /* Build configuration list for PBXAggregateTarget "Build All" */; - buildPhases = ( - 1A09EF5B12BD0C5000BF7F48 /* Copy Plug-ins */, - 1A7E3A06180AC8D400576095 /* Conditionally copy Debug Bundle */, - ); - dependencies = ( - 1AD267560C83052600B4BFD1 /* PBXTargetDependency */, - 1A7E3A05180AC8BF00576095 /* PBXTargetDependency */, - 1ABF219A12D691A300075821 /* PBXTargetDependency */, - ); - name = "Build All"; - productName = "Build All"; - }; -/* End PBXAggregateTarget section */ - -/* Begin PBXBuildFile section */ - 083325DD09DDBCDE00F5B8E4 /* OOColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 083325DB09DDBCDE00F5B8E4 /* OOColor.h */; }; - 083325DE09DDBCDE00F5B8E4 /* OOColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 083325DC09DDBCDE00F5B8E4 /* OOColor.m */; }; - 0865431C06B8447D000CA0AB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; - 0865431D06B8447D000CA0AB /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 06AFA01500A58FB77F000001 /* OpenGL.framework */; }; - 0878FD30086EF845004CB752 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0878FD2F086EF845004CB752 /* Carbon.framework */; }; - 1A00C65510663D3700A8737D /* OOProfilingStopwatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A00C65310663D3700A8737D /* OOProfilingStopwatch.h */; }; - 1A00C65610663D3700A8737D /* OOProfilingStopwatch.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A00C65410663D3700A8737D /* OOProfilingStopwatch.m */; }; - 1A00C7BA10667D3100A8737D /* OOECMBlastEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A00C7B810667D3100A8737D /* OOECMBlastEntity.h */; }; - 1A00C7BB10667D3100A8737D /* OOECMBlastEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A00C7B910667D3100A8737D /* OOECMBlastEntity.m */; }; - 1A00C7DF1066814C00A8737D /* OOAsyncWorkManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A00C7DD1066814C00A8737D /* OOAsyncWorkManager.h */; }; - 1A00C7E01066814C00A8737D /* OOAsyncWorkManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A00C7DE1066814C00A8737D /* OOAsyncWorkManager.m */; }; - 1A01574311034A86008EE36A /* ShipEntityLoadRestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A01574111034A86008EE36A /* ShipEntityLoadRestore.h */; }; - 1A01574411034A86008EE36A /* ShipEntityLoadRestore.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A01574211034A86008EE36A /* ShipEntityLoadRestore.m */; }; - 1A033F91132687DC006F9DB7 /* Quartz.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1A033F90132687DC006F9DB7 /* Quartz.framework */; }; - 1A033FA313268821006F9DB7 /* OoliteReadMe.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 1A033FA213268821006F9DB7 /* OoliteReadMe.pdf */; }; - 1A033FB813268ABB006F9DB7 /* OOPDFView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A033FB613268ABB006F9DB7 /* OOPDFView.h */; }; - 1A033FB913268ABB006F9DB7 /* OOPDFView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A033FB713268ABB006F9DB7 /* OOPDFView.m */; }; - 1A0365890D7CA05000B5F46F /* OOSkyDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A15044A0C12C50D0032F3E8 /* OOSkyDrawable.m */; }; - 1A03658A0D7CA05000B5F46F /* OOSkyDrawable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1504490C12C50D0032F3E8 /* OOSkyDrawable.h */; }; - 1A0479E90DC9F81000EE1CD0 /* OOShipRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0479E70DC9F81000EE1CD0 /* OOShipRegistry.h */; }; - 1A0479EA0DC9F81000EE1CD0 /* OOShipRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A0479E80DC9F81000EE1CD0 /* OOShipRegistry.m */; }; - 1A047A450DCA0F4F00EE1CD0 /* NSDictionaryOOExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A047A430DCA0F4F00EE1CD0 /* NSDictionaryOOExtensions.h */; }; - 1A047A460DCA0F4F00EE1CD0 /* NSDictionaryOOExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A047A440DCA0F4F00EE1CD0 /* NSDictionaryOOExtensions.m */; }; - 1A047B7E0DCB3D7500EE1CD0 /* OOProbabilitySet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A047B7C0DCB3D7500EE1CD0 /* OOProbabilitySet.h */; }; - 1A047B7F0DCB3D7500EE1CD0 /* OOProbabilitySet.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A047B7D0DCB3D7500EE1CD0 /* OOProbabilitySet.m */; }; - 1A05AFCD1879C2B800AFA7D1 /* OOOXZManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A05AFCB1879C2B800AFA7D1 /* OOOXZManager.h */; }; - 1A05AFCE1879C2B800AFA7D1 /* OOOXZManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A05AFCC1879C2B800AFA7D1 /* OOOXZManager.m */; }; - 1A062C8911B28D8A00727C1D /* NSObjectOOExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A062C8711B28D8A00727C1D /* NSObjectOOExtensions.h */; }; - 1A062C8A11B28D8A00727C1D /* NSObjectOOExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A062C8811B28D8A00727C1D /* NSObjectOOExtensions.m */; }; - 1A0729D90EF56D1200B0F925 /* OOConvertSystemDescriptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0729D70EF56D1200B0F925 /* OOConvertSystemDescriptions.h */; }; - 1A0729DA0EF56D1200B0F925 /* OOConvertSystemDescriptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A0729D80EF56D1200B0F925 /* OOConvertSystemDescriptions.m */; }; - 1A0729FE0EF5796500B0F925 /* OldSchoolPropertyListWriting.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0729FC0EF5796500B0F925 /* OldSchoolPropertyListWriting.h */; }; - 1A0729FF0EF5796500B0F925 /* OldSchoolPropertyListWriting.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A0729FD0EF5796500B0F925 /* OldSchoolPropertyListWriting.m */; }; - 1A0942CE12D7D5B9003B6273 /* OOJSFrameCallbacks.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A0942C812D7C011003B6273 /* OOJSFrameCallbacks.m */; }; - 1A09EF4412BD0BCA00BF7F48 /* PlayerEntityStickMapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D09E0BCF9CF70073F257 /* PlayerEntityStickMapper.m */; }; - 1A09EF4512BD0BCA00BF7F48 /* PlayerEntityKeyMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0F20BCF9CF70073F257 /* PlayerEntityKeyMapper.h */; }; - 1A09EF4612BD0BCA00BF7F48 /* PlayerEntityKeyMapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0F10BCF9CF70073F257 /* PlayerEntityKeyMapper.m */; }; - 1A0DA2EE0D71D280009B0970 /* OOJSSpecialFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0DA2EC0D71D280009B0970 /* OOJSSpecialFunctions.h */; }; - 1A0DA2EF0D71D280009B0970 /* OOJSSpecialFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A0DA2ED0D71D280009B0970 /* OOJSSpecialFunctions.m */; }; - 1A11273B105994D000DF9D12 /* OOExhaustPlumeEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A112739105994D000DF9D12 /* OOExhaustPlumeEntity.h */; }; - 1A11273C105994D000DF9D12 /* OOExhaustPlumeEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A11273A105994D000DF9D12 /* OOExhaustPlumeEntity.m */; }; - 1A115ED5158CFB4D005842DA /* splash@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 1A115ED4158CFB4D005842DA /* splash@2x.png */; }; - 1A11C2B111CFC35000F3EE77 /* OOJSEngineTimeManagement.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A11C2AF11CFC35000F3EE77 /* OOJSEngineTimeManagement.h */; }; - 1A11C2B211CFC35000F3EE77 /* OOJSEngineTimeManagement.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A11C2B011CFC35000F3EE77 /* OOJSEngineTimeManagement.m */; }; - 1A11F84A0F35F60C001C886C /* OOJSShipGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A11F8480F35F60C001C886C /* OOJSShipGroup.m */; }; - 1A11F84B0F35F60C001C886C /* OOJSShipGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A11F8490F35F60C001C886C /* OOJSShipGroup.h */; }; - 1A127F4312EC6A4400B65D9F /* OOTextureSprite.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A127F4112EC6A4400B65D9F /* OOTextureSprite.h */; }; - 1A127F4412EC6A4400B65D9F /* OOTextureSprite.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A127F4212EC6A4400B65D9F /* OOTextureSprite.m */; }; - 1A1280F812ECA4ED00B65D9F /* OOJSFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1280F612ECA4ED00B65D9F /* OOJSFont.h */; }; - 1A1280F912ECA4ED00B65D9F /* OOJSFont.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A1280F712ECA4ED00B65D9F /* OOJSFont.m */; }; - 1A143A4811EF22C5001BAB8D /* JAPersistentFileReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A143A4611EF22C5001BAB8D /* JAPersistentFileReference.h */; }; - 1A143A4911EF22C5001BAB8D /* JAPersistentFileReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A143A4711EF22C5001BAB8D /* JAPersistentFileReference.m */; }; - 1A15049E0C12CA070032F3E8 /* OOProbabilisticTextureManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A15049C0C12CA070032F3E8 /* OOProbabilisticTextureManager.h */; }; - 1A15049F0C12CA070032F3E8 /* OOProbabilisticTextureManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A15049D0C12CA070032F3E8 /* OOProbabilisticTextureManager.m */; }; - 1A1616620D7DCFDC0094AE5B /* OOFilteringEnumerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1616600D7DCFDC0094AE5B /* OOFilteringEnumerator.h */; }; - 1A1616630D7DCFDC0094AE5B /* OOFilteringEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A1616610D7DCFDC0094AE5B /* OOFilteringEnumerator.m */; }; - 1A19783E117F81B10060DB56 /* OOPixMapChannelOperations.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A19783C117F81B10060DB56 /* OOPixMapChannelOperations.h */; }; - 1A19783F117F81B10060DB56 /* OOPixMapChannelOperations.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A19783D117F81B10060DB56 /* OOPixMapChannelOperations.m */; }; - 1A1D212E0D2BD4C100F4DEC2 /* bsd_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1D212D0D2BD4C100F4DEC2 /* bsd_string.h */; }; - 1A1F2842105AAB7900ADB8C5 /* OOSparkEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1F2840105AAB7900ADB8C5 /* OOSparkEntity.h */; }; - 1A1F2843105AAB7900ADB8C5 /* OOSparkEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A1F2841105AAB7900ADB8C5 /* OOSparkEntity.m */; }; - 1A1F6D0D180AC324002AD52E /* OOWaypointEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1F6D0B180AC324002AD52E /* OOWaypointEntity.h */; }; - 1A1F6D0E180AC324002AD52E /* OOWaypointEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A1F6D0C180AC324002AD52E /* OOWaypointEntity.m */; }; - 1A1F6D16180AC371002AD52E /* OOJSWaypoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1F6D14180AC371002AD52E /* OOJSWaypoint.h */; }; - 1A1F6D17180AC371002AD52E /* OOJSWaypoint.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A1F6D15180AC371002AD52E /* OOJSWaypoint.m */; }; - 1A1F7DB6117B5D8100332757 /* OOMaterialSpecifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A1F7DA7117B5BDB00332757 /* OOMaterialSpecifier.m */; }; - 1A1F7DB7117B5D8200332757 /* OOMaterialSpecifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1F7DA6117B5BDB00332757 /* OOMaterialSpecifier.h */; }; - 1A20F7060F36EE0500156DE9 /* OOExcludeObjectEnumerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A20F7040F36EE0500156DE9 /* OOExcludeObjectEnumerator.h */; }; - 1A20F7070F36EE0500156DE9 /* OOExcludeObjectEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A20F7050F36EE0500156DE9 /* OOExcludeObjectEnumerator.m */; }; - 1A2315530B9C778400EF0852 /* splash.png in Resources */ = {isa = PBXBuildFile; fileRef = 1A23154F0B9C778400EF0852 /* splash.png */; }; - 1A231A180B9D8B1B00EF0852 /* OOCacheManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A231A160B9D8B1B00EF0852 /* OOCacheManager.h */; }; - 1A26D0AC0BCF9CF80073F257 /* PlayerEntityLegacyScriptEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0880BCF9CF70073F257 /* PlayerEntityLegacyScriptEngine.m */; }; - 1A26D0AD0BCF9CF80073F257 /* ShipEntityAI.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0890BCF9CF70073F257 /* ShipEntityAI.m */; }; - 1A26D0AE0BCF9CF80073F257 /* ShipEntityAI.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D08A0BCF9CF70073F257 /* ShipEntityAI.h */; }; - 1A26D0AF0BCF9CF80073F257 /* PlayerEntityScriptMethods.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D08B0BCF9CF70073F257 /* PlayerEntityScriptMethods.m */; }; - 1A26D0B00BCF9CF80073F257 /* PlayerEntityLoadSave.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D08C0BCF9CF70073F257 /* PlayerEntityLoadSave.m */; }; - 1A26D0B10BCF9CF80073F257 /* PlayerEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D08D0BCF9CF70073F257 /* PlayerEntity.m */; }; - 1A26D0B20BCF9CF80073F257 /* PlayerEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D08E0BCF9CF70073F257 /* PlayerEntity.h */; }; - 1A26D0B30BCF9CF80073F257 /* ShipEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D08F0BCF9CF70073F257 /* ShipEntity.m */; }; - 1A26D0B40BCF9CF80073F257 /* ShipEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0900BCF9CF70073F257 /* ShipEntity.h */; }; - 1A26D0B50BCF9CF80073F257 /* PlayerEntityScriptMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0910BCF9CF70073F257 /* PlayerEntityScriptMethods.h */; }; - 1A26D0B60BCF9CF80073F257 /* SkyEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0920BCF9CF70073F257 /* SkyEntity.m */; }; - 1A26D0B70BCF9CF80073F257 /* SkyEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0930BCF9CF70073F257 /* SkyEntity.h */; }; - 1A26D0B80BCF9CF80073F257 /* OOBreakPatternEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0940BCF9CF70073F257 /* OOBreakPatternEntity.m */; }; - 1A26D0B90BCF9CF80073F257 /* OOBreakPatternEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0950BCF9CF70073F257 /* OOBreakPatternEntity.h */; }; - 1A26D0BC0BCF9CF80073F257 /* PlayerEntityContracts.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0980BCF9CF70073F257 /* PlayerEntityContracts.h */; }; - 1A26D0BD0BCF9CF80073F257 /* PlanetEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0990BCF9CF70073F257 /* PlanetEntity.m */; }; - 1A26D0BE0BCF9CF80073F257 /* PlanetEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D09A0BCF9CF70073F257 /* PlanetEntity.h */; }; - 1A26D0BF0BCF9CF80073F257 /* PlayerEntityContracts.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D09B0BCF9CF70073F257 /* PlayerEntityContracts.m */; }; - 1A26D0C00BCF9CF80073F257 /* PlayerEntityControls.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D09C0BCF9CF70073F257 /* PlayerEntityControls.m */; }; - 1A26D0C10BCF9CF80073F257 /* Entity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D09D0BCF9CF70073F257 /* Entity.h */; }; - 1A26D0C40BCF9CF80073F257 /* WormholeEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0A00BCF9CF70073F257 /* WormholeEntity.m */; }; - 1A26D0C50BCF9CF80073F257 /* WormholeEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0A10BCF9CF70073F257 /* WormholeEntity.h */; }; - 1A26D0C60BCF9CF80073F257 /* StationEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0A20BCF9CF70073F257 /* StationEntity.m */; }; - 1A26D0C70BCF9CF80073F257 /* StationEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0A30BCF9CF70073F257 /* StationEntity.h */; }; - 1A26D0C80BCF9CF80073F257 /* PlayerEntityControls.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0A40BCF9CF70073F257 /* PlayerEntityControls.h */; }; - 1A26D0C90BCF9CF80073F257 /* PlayerEntitySound.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0A50BCF9CF70073F257 /* PlayerEntitySound.m */; }; - 1A26D0CA0BCF9CF80073F257 /* PlayerEntitySound.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0A60BCF9CF70073F257 /* PlayerEntitySound.h */; }; - 1A26D0CB0BCF9CF80073F257 /* DustEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0A70BCF9CF70073F257 /* DustEntity.h */; }; - 1A26D0CC0BCF9CF80073F257 /* Entity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0A80BCF9CF70073F257 /* Entity.m */; }; - 1A26D0CD0BCF9CF80073F257 /* DustEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0A90BCF9CF80073F257 /* DustEntity.m */; }; - 1A26D0CE0BCF9CF80073F257 /* PlayerEntityLegacyScriptEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0AA0BCF9CF80073F257 /* PlayerEntityLegacyScriptEngine.h */; }; - 1A26D0CF0BCF9CF80073F257 /* PlayerEntityLoadSave.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0AB0BCF9CF80073F257 /* PlayerEntityLoadSave.h */; }; - 1A26D0D40BCF9D0D0073F257 /* OOShaderMaterial.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0D00BCF9D0D0073F257 /* OOShaderMaterial.h */; }; - 1A26D0D50BCF9D0D0073F257 /* OOShaderMaterial.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0D10BCF9D0D0073F257 /* OOShaderMaterial.m */; }; - 1A26D0D60BCF9D0D0073F257 /* OOMaterial.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0D20BCF9D0D0073F257 /* OOMaterial.m */; }; - 1A26D0D70BCF9D0D0073F257 /* OOMaterial.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0D30BCF9D0D0073F257 /* OOMaterial.h */; }; - 1A26D0DC0BCF9D1E0073F257 /* OOShaderUniform.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0D80BCF9D1E0073F257 /* OOShaderUniform.h */; }; - 1A26D0DD0BCF9D1E0073F257 /* OOShaderProgram.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0D90BCF9D1E0073F257 /* OOShaderProgram.m */; }; - 1A26D0DE0BCF9D1E0073F257 /* OOShaderProgram.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0DA0BCF9D1E0073F257 /* OOShaderProgram.h */; }; - 1A26D0DF0BCF9D1E0073F257 /* OOShaderUniform.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0DB0BCF9D1E0073F257 /* OOShaderUniform.m */; }; - 1A26D0E60BCF9D3B0073F257 /* OOTexture.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0E00BCF9D3B0073F257 /* OOTexture.m */; }; - 1A26D0E70BCF9D3B0073F257 /* OOTexture.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0E10BCF9D3B0073F257 /* OOTexture.h */; }; - 1A26D0E80BCF9D3B0073F257 /* OOPNGTextureLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0E20BCF9D3B0073F257 /* OOPNGTextureLoader.m */; }; - 1A26D0E90BCF9D3B0073F257 /* OOTextureLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0E30BCF9D3B0073F257 /* OOTextureLoader.h */; }; - 1A26D0EA0BCF9D3B0073F257 /* OOPNGTextureLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A26D0E40BCF9D3B0073F257 /* OOPNGTextureLoader.h */; }; - 1A26D0EB0BCF9D3B0073F257 /* OOTextureLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A26D0E50BCF9D3B0073F257 /* OOTextureLoader.m */; }; - 1A27965012CCC09A00C9E94D /* libnspr4_for_oolite.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AB7760412CA2E53001478BB /* libnspr4_for_oolite.a */; }; - 1A27DB3B0C4E349F00CB4CE8 /* OOOXPVerifierStageInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A27DB380C4E349F00CB4CE8 /* OOOXPVerifierStageInternal.h */; }; - 1A27DB3C0C4E349F00CB4CE8 /* OOOXPVerifierStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A27DB390C4E349F00CB4CE8 /* OOOXPVerifierStage.h */; }; - 1A27DB3D0C4E349F00CB4CE8 /* OOOXPVerifierStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A27DB3A0C4E349F00CB4CE8 /* OOOXPVerifierStage.m */; }; - 1A27DB420C4E34B300CB4CE8 /* OOFileScannerVerifierStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A27DB400C4E34B300CB4CE8 /* OOFileScannerVerifierStage.h */; }; - 1A27DB430C4E34B300CB4CE8 /* OOFileScannerVerifierStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A27DB410C4E34B300CB4CE8 /* OOFileScannerVerifierStage.m */; }; - 1A28AA160D55438200BC0CE4 /* OOJSSound.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A28AA140D55438200BC0CE4 /* OOJSSound.h */; }; - 1A28AA170D55438200BC0CE4 /* OOJSSound.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A28AA150D55438200BC0CE4 /* OOJSSound.m */; }; - 1A29967E0B9F064C002D2149 /* OOCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A29967C0B9F064C002D2149 /* OOCache.h */; }; - 1A29967F0B9F064C002D2149 /* OOCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A29967D0B9F064C002D2149 /* OOCache.m */; }; - 1A2A16680BD10B1200152975 /* OOSingleTextureMaterial.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2A16660BD10B1200152975 /* OOSingleTextureMaterial.m */; }; - 1A2A16690BD10B1200152975 /* OOSingleTextureMaterial.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2A16670BD10B1200152975 /* OOSingleTextureMaterial.h */; }; - 1A2A17D60BD1587D00152975 /* OOCPUInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2A17D40BD1587D00152975 /* OOCPUInfo.h */; }; - 1A2A17D70BD1587D00152975 /* OOCPUInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2A17D50BD1587D00152975 /* OOCPUInfo.m */; }; - 1A2A1B090BD276A900152975 /* OOEntityWithDrawable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2A1B050BD276A900152975 /* OOEntityWithDrawable.h */; }; - 1A2A1B0A0BD276A900152975 /* OOEntityWithDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2A1B060BD276A900152975 /* OOEntityWithDrawable.m */; }; - 1A2A1B160BD2774300152975 /* OODrawable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2A1B120BD2774300152975 /* OODrawable.h */; }; - 1A2A1B170BD2774300152975 /* OODrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2A1B130BD2774300152975 /* OODrawable.m */; }; - 1A2A1CAC0BD2914F00152975 /* OOMesh.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2A1CA80BD2914F00152975 /* OOMesh.h */; }; - 1A2A1CAD0BD2914F00152975 /* OOMesh.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2A1CA90BD2914F00152975 /* OOMesh.m */; }; - 1A2A1DEC0BD2A28E00152975 /* OOMacroOpenGL.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2A1DEA0BD2A28E00152975 /* OOMacroOpenGL.h */; }; - 1A2A8C150BC65FFD001E00FB /* OOJSEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2A8C130BC65FFD001E00FB /* OOJSEntity.h */; }; - 1A2A8C160BC65FFD001E00FB /* OOJSEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2A8C140BC65FFD001E00FB /* OOJSEntity.m */; }; - 1A2A8D3A0BC6765F001E00FB /* EntityOOJavaScriptExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2A8D380BC6765F001E00FB /* EntityOOJavaScriptExtensions.h */; }; - 1A2A8D3B0BC6765F001E00FB /* EntityOOJavaScriptExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2A8D390BC6765F001E00FB /* EntityOOJavaScriptExtensions.m */; }; - 1A2A8E030BC67CCC001E00FB /* OOWeakReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2A8E010BC67CCC001E00FB /* OOWeakReference.h */; }; - 1A2A8E040BC67CCC001E00FB /* OOWeakReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2A8E020BC67CCC001E00FB /* OOWeakReference.m */; }; - 1A2A91520BC6BC66001E00FB /* OOJSQuaternion.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2A91500BC6BC66001E00FB /* OOJSQuaternion.h */; }; - 1A2A91530BC6BC66001E00FB /* OOJSQuaternion.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2A91510BC6BC66001E00FB /* OOJSQuaternion.m */; }; - 1A2DA2AB0CB4CB5C00DE6823 /* OODebugTCPConsoleProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2DA2A40CB4CB5C00DE6823 /* OODebugTCPConsoleProtocol.h */; }; - 1A2DA2AE0CB4CB5C00DE6823 /* OODebugTCPConsoleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2DA2A70CB4CB5C00DE6823 /* OODebugTCPConsoleClient.h */; }; - 1A2DA2AF0CB4CB5C00DE6823 /* OOTCPStreamDecoderAbstractionLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2DA2A80CB4CB5C00DE6823 /* OOTCPStreamDecoderAbstractionLayer.h */; }; - 1A2DA2B00CB4CB5C00DE6823 /* OOTCPStreamDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2DA2A90CB4CB5C00DE6823 /* OOTCPStreamDecoder.h */; }; - 1A2DA34D0CB4D0D800DE6823 /* OOJSConsole.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2DA3490CB4D0D800DE6823 /* OOJSConsole.h */; }; - 1A2DA34E0CB4D0D800DE6823 /* OODebugMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2DA34A0CB4D0D800DE6823 /* OODebugMonitor.h */; }; - 1A2DA3550CB4D10800DE6823 /* OODebuggerInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2DA3540CB4D10800DE6823 /* OODebuggerInterface.h */; }; - 1A2DA3830CB4D25D00DE6823 /* OOTCPStreamDecoderAbstractionLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2DA2AA0CB4CB5C00DE6823 /* OOTCPStreamDecoderAbstractionLayer.m */; }; - 1A2DA3870CB4D27400DE6823 /* OOTCPStreamDecoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A2DA2A60CB4CB5C00DE6823 /* OOTCPStreamDecoder.c */; }; - 1A2DA3920CB4D29300DE6823 /* OODebugTCPConsoleClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2DA2A50CB4CB5C00DE6823 /* OODebugTCPConsoleClient.m */; }; - 1A2DA39E0CB4D2BB00DE6823 /* OODebugMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2DA34C0CB4D0D800DE6823 /* OODebugMonitor.m */; }; - 1A2DA3A40CB4D35800DE6823 /* OOJSConsole.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2DA34B0CB4D0D800DE6823 /* OOJSConsole.m */; }; - 1A2DA3EE0CB4E84900DE6823 /* OODebugSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2DA3EC0CB4E84900DE6823 /* OODebugSupport.m */; }; - 1A2DA3EF0CB4E84900DE6823 /* OODebugSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2DA3ED0CB4E84900DE6823 /* OODebugSupport.h */; }; - 1A3159590F1B894F00328E4A /* OOAIStateMachineVerifierStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A3159260F1B7B7E00328E4A /* OOAIStateMachineVerifierStage.m */; }; - 1A31595A0F1B895000328E4A /* OOAIStateMachineVerifierStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3159250F1B7B7E00328E4A /* OOAIStateMachineVerifierStage.h */; }; - 1A35257212E1FFA900244C9D /* OOConstToJSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A35257012E1FFA900244C9D /* OOConstToJSString.h */; }; - 1A35257312E1FFA900244C9D /* OOConstToJSString.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A35257112E1FFA900244C9D /* OOConstToJSString.m */; }; - 1A38B4AC0B988532001ED4A0 /* OOLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A38B4AA0B988532001ED4A0 /* OOLogging.h */; }; - 1A38B4AD0B988532001ED4A0 /* OOLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A38B4AB0B988532001ED4A0 /* OOLogging.m */; settings = {COMPILER_FLAGS = "-fvisibility=default"; }; }; - 1A38E9E31603C7A500EE19F1 /* OOJSInterfaceDefinition.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A38E9E11603C7A500EE19F1 /* OOJSInterfaceDefinition.h */; }; - 1A38E9E41603C7A500EE19F1 /* OOJSInterfaceDefinition.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A38E9E21603C7A500EE19F1 /* OOJSInterfaceDefinition.m */; }; - 1A38E9E71603C7A500EE19F1 /* OOJSGuiScreenKeyDefinition.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A38E9E51603C7A500EE19F1 /* OOJSGuiScreenKeyDefinition.h */; }; - 1A38E9E81603C7A500EE19F1 /* OOJSGuiScreenKeyDefinition.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A38E9E61603C7A500EE19F1 /* OOJSGuiScreenKeyDefinition.m */; }; - 1A3A04620BC547DC00B5E2D9 /* OOTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3A04610BC547DC00B5E2D9 /* OOTypes.h */; }; - 1A3ACFEB0C5FF33A00EC50A7 /* OOJSShip.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3ACFE90C5FF33A00EC50A7 /* OOJSShip.h */; }; - 1A3ACFEC0C5FF33A00EC50A7 /* OOJSShip.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A3ACFEA0C5FF33A00EC50A7 /* OOJSShip.m */; }; - 1A3AFF1F0BC4462200B5E2D9 /* OOJSVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3AFF1D0BC4462200B5E2D9 /* OOJSVector.h */; }; - 1A3AFF200BC4462200B5E2D9 /* OOJSVector.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A3AFF1E0BC4462200B5E2D9 /* OOJSVector.m */; }; - 1A3BA259106555D100C5C6F3 /* NSNumberOOExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3BA257106555D100C5C6F3 /* NSNumberOOExtensions.h */; }; - 1A3BA25A106555D100C5C6F3 /* NSNumberOOExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A3BA258106555D100C5C6F3 /* NSNumberOOExtensions.m */; }; - 1A3C67FB0F1C910E0000D45B /* OOLegacyScriptWhitelist.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A3C67F40F1C90BF0000D45B /* OOLegacyScriptWhitelist.m */; }; - 1A3D03151173536C005BF5E6 /* OOMultiTextureMaterial.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3D03131173536C005BF5E6 /* OOMultiTextureMaterial.h */; }; - 1A3D03161173536C005BF5E6 /* OOMultiTextureMaterial.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A3D03141173536C005BF5E6 /* OOMultiTextureMaterial.m */; }; - 1A3D034A11736EDA005BF5E6 /* OOMaterialConvenienceCreators.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3D034811736EDA005BF5E6 /* OOMaterialConvenienceCreators.h */; }; - 1A3D034B11736EDA005BF5E6 /* OOMaterialConvenienceCreators.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A3D034911736EDA005BF5E6 /* OOMaterialConvenienceCreators.m */; }; - 1A3E019B11C574C2000FF226 /* Oolite.mdimporter in Copy MDImporter */ = {isa = PBXBuildFile; fileRef = 1A3E019611C574AC000FF226 /* Oolite.mdimporter */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 1A401F8815E7AF7B004CDF95 /* OOPrimaryWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A401F8615E7AF7B004CDF95 /* OOPrimaryWindow.h */; }; - 1A401F8915E7AF7B004CDF95 /* OOPrimaryWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A401F8715E7AF7B004CDF95 /* OOPrimaryWindow.m */; }; - 1A43234E0BCFC9BB00F65914 /* OOOpenGLExtensionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A43234A0BCFC9BB00F65914 /* OOOpenGLExtensionManager.h */; }; - 1A43234F0BCFC9BB00F65914 /* OOOpenGLExtensionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A43234B0BCFC9BB00F65914 /* OOOpenGLExtensionManager.m */; }; - 1A43A0CC0CB91D2C00D0E239 /* OOJSPlanet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A43A0CA0CB91D2C00D0E239 /* OOJSPlanet.h */; }; - 1A43A0CD0CB91D2C00D0E239 /* OOJSPlanet.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A43A0CB0CB91D2C00D0E239 /* OOJSPlanet.m */; }; - 1A43A1860CB9243B00D0E239 /* OOEntityFilterPredicate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A43A1840CB9243B00D0E239 /* OOEntityFilterPredicate.h */; }; - 1A43A1870CB9243B00D0E239 /* OOEntityFilterPredicate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A43A1850CB9243B00D0E239 /* OOEntityFilterPredicate.m */; }; - 1A43F28B105170A8003FDE8B /* OONSOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A43F28A105170A8003FDE8B /* OONSOperation.h */; }; - 1A451D8D0BB1BD2A004CD72F /* OOMaths.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9404920BAF4582005F6CF3 /* OOMaths.h */; }; - 1A472917096B5454000E78D8 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1A472916096B5454000E78D8 /* CoreAudio.framework */; }; - 1A472921096B5468000E78D8 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1A47291F096B5468000E78D8 /* AudioToolbox.framework */; }; - 1A472922096B5468000E78D8 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1A472920096B5468000E78D8 /* AudioUnit.framework */; }; - 1A4DF25D12FDC4880027F43D /* OORingEffectEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A4DF25A12FDC4420027F43D /* OORingEffectEntity.m */; }; - 1A4DF35312FDF0410027F43D /* OOParticleSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4DF35112FDF0410027F43D /* OOParticleSystem.h */; }; - 1A4DF35412FDF0410027F43D /* OOParticleSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A4DF35212FDF0410027F43D /* OOParticleSystem.m */; }; - 1A4F917119CEDD1900E18B65 /* OODebugStandards.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A4F917019CEDD1900E18B65 /* OODebugStandards.m */; }; - 1A4F917819CEDD7900E18B65 /* OOCommodityMarket.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A4F917719CEDD7900E18B65 /* OOCommodityMarket.m */; }; - 1A4F917A19CEDDB200E18B65 /* OOCommodityMarket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4F917919CEDDB200E18B65 /* OOCommodityMarket.h */; }; - 1A4F917D19CEDDC600E18B65 /* OOCommodities.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4F917B19CEDDC600E18B65 /* OOCommodities.h */; }; - 1A4F917E19CEDDC600E18B65 /* OOCommodities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A4F917C19CEDDC600E18B65 /* OOCommodities.m */; }; - 1A4F918019CEDDFB00E18B65 /* OODebugStandards.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4F917F19CEDDFB00E18B65 /* OODebugStandards.h */; }; - 1A4FB3350C8DC86800DC8E1F /* OOJSOolite.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4FB3330C8DC86800DC8E1F /* OOJSOolite.h */; }; - 1A4FB3360C8DC86800DC8E1F /* OOJSOolite.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A4FB3340C8DC86800DC8E1F /* OOJSOolite.m */; }; - 1A504D9114DC964A003E5363 /* Oolite.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1A504D9014DC964A003E5363 /* Oolite.xib */; }; - 1A5218DA0D72EC21000865E9 /* OOSpatialReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5218D80D72EC21000865E9 /* OOSpatialReference.h */; }; - 1A5218DE0D72ECE5000865E9 /* OOSpatialReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A5218DD0D72ECE5000865E9 /* OOSpatialReference.m */; }; - 1A54115B14B8913E00B8A4BE /* OOMacJoystickManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A54115914B8913E00B8A4BE /* OOMacJoystickManager.h */; }; - 1A54115C14B8913E00B8A4BE /* OOMacJoystickManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A54115A14B8913E00B8A4BE /* OOMacJoystickManager.m */; }; - 1A54125114B892A200B8A4BE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1A54125014B892A200B8A4BE /* IOKit.framework */; }; - 1A54AB530E3E17A1001EB817 /* OOJSPlayerShip.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A54AB510E3E17A0001EB817 /* OOJSPlayerShip.h */; }; - 1A54AB540E3E17A1001EB817 /* OOJSPlayerShip.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A54AB520E3E17A0001EB817 /* OOJSPlayerShip.m */; }; - 1A5AA3230C0098AF0029C78A /* OOOpenGL.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A5AA3220C0098AF0029C78A /* OOOpenGL.m */; }; - 1A5D58871825241800C779AE /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A5D58821825241800C779AE /* ioapi.c */; }; - 1A5D58881825241800C779AE /* ioapi.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5D58831825241800C779AE /* ioapi.h */; }; - 1A5D588A1825241800C779AE /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A5D58851825241800C779AE /* unzip.c */; }; - 1A5D588B1825241800C779AE /* unzip.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5D58861825241800C779AE /* unzip.h */; }; - 1A5D5893182525DE00C779AE /* NSDataOOExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5D5891182525DE00C779AE /* NSDataOOExtensions.h */; }; - 1A5D5894182525DE00C779AE /* NSDataOOExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A5D5892182525DE00C779AE /* NSDataOOExtensions.m */; }; - 1A5DB1EA0BBD8F0000D57389 /* OOConstToString.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5DB1E80BBD8F0000D57389 /* OOConstToString.h */; }; - 1A5DB1EB0BBD8F0000D57389 /* OOConstToString.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A5DB1E90BBD8F0000D57389 /* OOConstToString.m */; }; - 1A5DBAA60BC000DC00D57389 /* OOJavaScriptEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5DBA9A0BC000DC00D57389 /* OOJavaScriptEngine.h */; }; - 1A5DBAA70BC000DC00D57389 /* OOJavaScriptEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A5DBA9B0BC000DC00D57389 /* OOJavaScriptEngine.m */; }; - 1A5DBAA80BC000DC00D57389 /* OOJSScript.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5DBA9C0BC000DC00D57389 /* OOJSScript.h */; }; - 1A5DBAA90BC000DC00D57389 /* OOJSScript.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A5DBA9D0BC000DC00D57389 /* OOJSScript.m */; }; - 1A5DBAAA0BC000DC00D57389 /* OOPListScript.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5DBA9E0BC000DC00D57389 /* OOPListScript.h */; }; - 1A5DBAAB0BC000DC00D57389 /* OOPListScript.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A5DBA9F0BC000DC00D57389 /* OOPListScript.m */; }; - 1A5DBAAD0BC000DC00D57389 /* OOScript.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5DBAA10BC000DC00D57389 /* OOScript.h */; }; - 1A5DBAAE0BC000DC00D57389 /* OOScript.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A5DBAA20BC000DC00D57389 /* OOScript.m */; }; - 1A5DBD580BC17F0900D57389 /* NSStringOOExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5DBD560BC17F0900D57389 /* NSStringOOExtensions.h */; }; - 1A5DBD590BC17F0900D57389 /* NSStringOOExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A5DBD570BC17F0900D57389 /* NSStringOOExtensions.m */; }; - 1A5E462F0C32DACE008104B4 /* OOShaderUniformMethodType.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A5E462D0C32DACE008104B4 /* OOShaderUniformMethodType.m */; }; - 1A5E46300C32DACE008104B4 /* OOShaderUniformMethodType.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5E462E0C32DACE008104B4 /* OOShaderUniformMethodType.h */; }; - 1A60AFB70D56093B0070510D /* OOMusicController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A60AFB50D56093B0070510D /* OOMusicController.h */; }; - 1A60AFB80D56093B0070510D /* OOMusicController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A60AFB60D56093B0070510D /* OOMusicController.m */; }; - 1A62F0FD0E26A2A000897506 /* OOEquipmentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A62F0FB0E26A2A000897506 /* OOEquipmentType.m */; }; - 1A62F0FE0E26A2A000897506 /* OOEquipmentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A62F0FC0E26A2A000897506 /* OOEquipmentType.h */; }; - 1A68A4A51615F4A400D7BB08 /* OOMeshToOctreeConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2512834109BA27EC00F43D55 /* OOMeshToOctreeConverter.m */; settings = {COMPILER_FLAGS = $OO_MATHS_OPTS; }; }; - 1A69FFEE18A64C320062EAC8 /* PlayerEntityStickProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A69FFEC18A64C320062EAC8 /* PlayerEntityStickProfile.h */; }; - 1A69FFEF18A64C320062EAC8 /* PlayerEntityStickProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A69FFED18A64C320062EAC8 /* PlayerEntityStickProfile.m */; }; - 1A69FFF718A64CF70062EAC8 /* OOJoystickProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A69FFF518A64CF70062EAC8 /* OOJoystickProfile.h */; }; - 1A69FFF818A64CF70062EAC8 /* OOJoystickProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A69FFF618A64CF70062EAC8 /* OOJoystickProfile.m */; }; - 1A6A963310AEEC5D0065D0F3 /* AIGraphViz.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6A963210AEEC5D0065D0F3 /* AIGraphViz.m */; }; - 1A6B1EF00C9AA5C6000717CF /* OOScriptTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6B1EEE0C9AA5C6000717CF /* OOScriptTimer.h */; }; - 1A6B1EF10C9AA5C6000717CF /* OOScriptTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6B1EEF0C9AA5C6000717CF /* OOScriptTimer.m */; }; - 1A6B1F360C9AAA60000717CF /* OOPriorityQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6B1F340C9AAA60000717CF /* OOPriorityQueue.m */; }; - 1A6B1F370C9AAA60000717CF /* OOPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6B1F350C9AAA60000717CF /* OOPriorityQueue.h */; }; - 1A6B228D0C9B40D4000717CF /* OOJSTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6B228B0C9B40D4000717CF /* OOJSTimer.h */; }; - 1A6B228E0C9B40D4000717CF /* OOJSTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6B228C0C9B40D4000717CF /* OOJSTimer.m */; }; - 1A6B25EE0C9C2746000717CF /* OOJSClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6B25EC0C9C2745000717CF /* OOJSClock.h */; }; - 1A6B25EF0C9C2746000717CF /* OOJSClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6B25ED0C9C2746000717CF /* OOJSClock.m */; }; - 1A6DD1230C57B5BC00A892F4 /* OOPListSchemaVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6DD1210C57B5BC00A892F4 /* OOPListSchemaVerifier.h */; }; - 1A6DD1240C57B5BC00A892F4 /* OOPListSchemaVerifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6DD1220C57B5BC00A892F4 /* OOPListSchemaVerifier.m */; }; - 1A6F665314DF323900695C11 /* OODefaultShaderSynthesizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6F665114DF323900695C11 /* OODefaultShaderSynthesizer.h */; }; - 1A6F665414DF323900695C11 /* OODefaultShaderSynthesizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6F665214DF323900695C11 /* OODefaultShaderSynthesizer.m */; }; - 1A7038A212BB9F5A0015CCDC /* dummy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A7038A112BB9F5A0015CCDC /* dummy.cpp */; }; - 1A71D8AA0E5F17410088C456 /* OOSoundSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A71D8A80E5F17410088C456 /* OOSoundSource.m */; }; - 1A71D8AB0E5F17410088C456 /* OOSoundSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A71D8A90E5F17410088C456 /* OOSoundSource.h */; }; - 1A71E8790BCE8EB100CD5C13 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 1A71E8780BCE8EB100CD5C13 /* libz.dylib */; }; - 1A71EA8C0BCF8C6B00CD5C13 /* OOXMLExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 25161102099544380037C2E1 /* OOXMLExtensions.m */; }; - 1A71EA8D0BCF8C6C00CD5C13 /* OOXMLExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 25161107099544390037C2E1 /* OOXMLExtensions.h */; }; - 1A72F86515E002E200281337 /* OOMouseInteractionMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A72F86315E002E100281337 /* OOMouseInteractionMode.h */; }; - 1A72F86615E002E200281337 /* OOMouseInteractionMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A72F86415E002E100281337 /* OOMouseInteractionMode.m */; }; - 1A72F86915E14F1100281337 /* OOMacSystemStandardFullScreenController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A72F86715E14F1100281337 /* OOMacSystemStandardFullScreenController.h */; }; - 1A72F86A15E14F1100281337 /* OOMacSystemStandardFullScreenController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A72F86815E14F1100281337 /* OOMacSystemStandardFullScreenController.m */; }; - 1A72F86E15E5655D00281337 /* OOVisualEffectEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A72F86C15E5655C00281337 /* OOVisualEffectEntity.h */; }; - 1A72F86F15E5655D00281337 /* OOVisualEffectEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A72F86D15E5655D00281337 /* OOVisualEffectEntity.m */; }; - 1A72F87215E5658E00281337 /* OOJSVisualEffect.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A72F87015E5658E00281337 /* OOJSVisualEffect.h */; }; - 1A72F87315E5658E00281337 /* OOJSVisualEffect.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A72F87115E5658E00281337 /* OOJSVisualEffect.m */; }; - 1A736BD30C61E9370097AC37 /* OOJSPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A736BD10C61E9370097AC37 /* OOJSPlayer.h */; }; - 1A736BD40C61E9370097AC37 /* OOJSPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A736BD20C61E9370097AC37 /* OOJSPlayer.m */; }; - 1A736C7F0C61FD220097AC37 /* OOJSCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A736C7D0C61FD220097AC37 /* OOJSCall.h */; }; - 1A736C800C61FD220097AC37 /* OOJSCall.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A736C7E0C61FD220097AC37 /* OOJSCall.m */; }; - 1A73712D0C623DAE0097AC37 /* OOJSStation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A73712B0C623DAE0097AC37 /* OOJSStation.h */; }; - 1A73712E0C623DAE0097AC37 /* OOJSStation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A73712C0C623DAE0097AC37 /* OOJSStation.m */; }; - 1A7376BE0C64AE330097AC37 /* OOJSSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7376BC0C64AE330097AC37 /* OOJSSystem.h */; }; - 1A7376BF0C64AE330097AC37 /* OOJSSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7376BD0C64AE330097AC37 /* OOJSSystem.m */; }; - 1A78B5DA12D74CFF00D42EE7 /* libpng_for_oolite.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1A78B5D912D74CF900D42EE7 /* libpng_for_oolite.a */; }; - 1A7B967F0E620C9E00322821 /* OOSoundInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7B967E0E620C9E00322821 /* OOSoundInternal.h */; }; - 1A7BA8830D843485003C6CA3 /* ShipEntityScriptMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7BA80B0D84231A003C6CA3 /* ShipEntityScriptMethods.h */; }; - 1A7BA8840D843485003C6CA3 /* ShipEntityScriptMethods.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7BA80C0D84231A003C6CA3 /* ShipEntityScriptMethods.m */; }; - 1A7C75C30CC39EC3005D0AA2 /* OOJSSun.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7C75980CC39D11005D0AA2 /* OOJSSun.m */; }; - 1A7C75C50CC39EC9005D0AA2 /* OOJSSun.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7C75990CC39D11005D0AA2 /* OOJSSun.h */; }; - 1A7D3A180C4F6162008EDC33 /* OOCheckRequiresPListVerifierStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7D3A160C4F6162008EDC33 /* OOCheckRequiresPListVerifierStage.h */; }; - 1A7D3A190C4F6162008EDC33 /* OOCheckRequiresPListVerifierStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7D3A170C4F6162008EDC33 /* OOCheckRequiresPListVerifierStage.m */; }; - 1A7D3B9B0C4F7843008EDC33 /* OOCheckDemoShipsPListVerifierStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7D3B990C4F7843008EDC33 /* OOCheckDemoShipsPListVerifierStage.h */; }; - 1A7D3B9C0C4F7843008EDC33 /* OOCheckDemoShipsPListVerifierStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7D3B9A0C4F7843008EDC33 /* OOCheckDemoShipsPListVerifierStage.m */; }; - 1A7D3C490C4F818C008EDC33 /* OOCheckEquipmentPListVerifierStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7D3C470C4F818C008EDC33 /* OOCheckEquipmentPListVerifierStage.h */; }; - 1A7D3C4A0C4F818C008EDC33 /* OOCheckEquipmentPListVerifierStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7D3C480C4F818C008EDC33 /* OOCheckEquipmentPListVerifierStage.m */; }; - 1A7D3D2B0C4F8D02008EDC33 /* OOTextureVerifierStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7D3D290C4F8D01008EDC33 /* OOTextureVerifierStage.h */; }; - 1A7D3D2C0C4F8D02008EDC33 /* OOTextureVerifierStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7D3D2A0C4F8D02008EDC33 /* OOTextureVerifierStage.m */; }; - 1A7D41860C516B90008EDC33 /* OOModelVerifierStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7D41840C516B90008EDC33 /* OOModelVerifierStage.m */; }; - 1A7D41870C516B90008EDC33 /* OOModelVerifierStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7D41850C516B90008EDC33 /* OOModelVerifierStage.h */; }; - 1A7D41E20C516E9E008EDC33 /* OOCheckShipDataPListVerifierStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7D41E00C516E9E008EDC33 /* OOCheckShipDataPListVerifierStage.h */; }; - 1A7D41E30C516E9E008EDC33 /* OOCheckShipDataPListVerifierStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7D41E10C516E9E008EDC33 /* OOCheckShipDataPListVerifierStage.m */; }; - 1A7D833A0C40147800E4A5F5 /* OOAsyncQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7D83380C40147700E4A5F5 /* OOAsyncQueue.h */; }; - 1A7D833B0C40147800E4A5F5 /* OOAsyncQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7D83390C40147700E4A5F5 /* OOAsyncQueue.m */; }; - 1A7E317C113ED37C009AAB6D /* EntityShaderBindings.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7E317B113ED37C009AAB6D /* EntityShaderBindings.m */; }; - 1A7E3189113ED496009AAB6D /* ProxyPlayerEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7E3187113ED496009AAB6D /* ProxyPlayerEntity.h */; }; - 1A7E318A113ED496009AAB6D /* ProxyPlayerEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7E3188113ED496009AAB6D /* ProxyPlayerEntity.m */; }; - 1A817CFC106D232100AA2F97 /* OOPlasmaShotEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A817CFA106D232100AA2F97 /* OOPlasmaShotEntity.h */; }; - 1A817CFD106D232100AA2F97 /* OOPlasmaShotEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A817CFB106D232100AA2F97 /* OOPlasmaShotEntity.m */; }; - 1A817DA0106D3FF000AA2F97 /* OOPlasmaBurstEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A817D9E106D3FF000AA2F97 /* OOPlasmaBurstEntity.h */; }; - 1A817DA1106D3FF000AA2F97 /* OOPlasmaBurstEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A817D9F106D3FF000AA2F97 /* OOPlasmaBurstEntity.m */; }; - 1A817DC3106D443B00AA2F97 /* OOFlashEffectEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A817DC1106D443B00AA2F97 /* OOFlashEffectEntity.h */; }; - 1A817DC4106D443B00AA2F97 /* OOFlashEffectEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A817DC2106D443B00AA2F97 /* OOFlashEffectEntity.m */; }; - 1A87063E1172029F003FDD2A /* OODebugFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A87063D1172029F003FDD2A /* OODebugFlags.h */; }; - 1A8A37560B960337007D20B8 /* NSMutableDictionaryOOExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8A37540B960337007D20B8 /* NSMutableDictionaryOOExtensions.m */; }; - 1A8A37570B960337007D20B8 /* NSMutableDictionaryOOExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A8A37550B960337007D20B8 /* NSMutableDictionaryOOExtensions.h */; }; - 1A8A394E0B96229C007D20B8 /* NSFileManagerOOExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8A394C0B96229C007D20B8 /* NSFileManagerOOExtensions.m */; }; - 1A8A394F0B96229C007D20B8 /* NSFileManagerOOExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A8A394D0B96229C007D20B8 /* NSFileManagerOOExtensions.h */; }; - 1A8A3A380B962AEF007D20B8 /* NSScannerOOExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A8A3A360B962AEF007D20B8 /* NSScannerOOExtensions.h */; }; - 1A8A3A390B962AEF007D20B8 /* NSScannerOOExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8A3A370B962AEF007D20B8 /* NSScannerOOExtensions.m */; }; - 1A8BB8EA0E8311F900122974 /* OONullTexture.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A8BB8E80E8311F900122974 /* OONullTexture.h */; }; - 1A8BB8EB0E8311F900122974 /* OONullTexture.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8BB8E90E8311F900122974 /* OONullTexture.m */; }; - 1A8C981D117A380800D8AB7E /* OOCombinedEmissionMapGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8C97E5117A1A2F00D8AB7E /* OOCombinedEmissionMapGenerator.m */; }; - 1A8C981E117A380800D8AB7E /* OOCombinedEmissionMapGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A8C97E4117A1A2F00D8AB7E /* OOCombinedEmissionMapGenerator.h */; }; - 1A92AB711846403200C507E3 /* OOJSExhaustPlume.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A92AB6F1846403200C507E3 /* OOJSExhaustPlume.h */; }; - 1A92AB721846403200C507E3 /* OOJSExhaustPlume.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A92AB701846403200C507E3 /* OOJSExhaustPlume.m */; }; - 1A92AB7A1846403F00C507E3 /* OOJSFlasher.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A92AB781846403F00C507E3 /* OOJSFlasher.h */; }; - 1A92AB7B1846403F00C507E3 /* OOJSFlasher.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A92AB791846403F00C507E3 /* OOJSFlasher.m */; }; - 1A9322970DF53C33003FD306 /* OOJSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9322950DF53C33003FD306 /* OOJSSystemInfo.h */; }; - 1A9322980DF53C33003FD306 /* OOJSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9322960DF53C33003FD306 /* OOJSSystemInfo.m */; }; - 1A9400BE0BAF0ECD005F6CF3 /* OOStringParsing.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9400BD0BAF0ECD005F6CF3 /* OOStringParsing.m */; }; - 1A9400C00BAF0EDB005F6CF3 /* OOStringParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9400BF0BAF0EDB005F6CF3 /* OOStringParsing.h */; }; - 1A9403D00BAF36C3005F6CF3 /* OOFunctionAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9403CF0BAF36C3005F6CF3 /* OOFunctionAttributes.h */; }; - 1A9404260BAF3DED005F6CF3 /* OOCollectionExtractors.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9404240BAF3DED005F6CF3 /* OOCollectionExtractors.m */; }; - 1A9404270BAF3DED005F6CF3 /* OOCollectionExtractors.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9404250BAF3DED005F6CF3 /* OOCollectionExtractors.h */; }; - 1A9404660BAF42BF005F6CF3 /* OOPListParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9404640BAF42BE005F6CF3 /* OOPListParsing.h */; }; - 1A9404670BAF42BF005F6CF3 /* OOPListParsing.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9404650BAF42BF005F6CF3 /* OOPListParsing.m */; }; - 1A9404A30BAF462D005F6CF3 /* OOVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9404A10BAF462D005F6CF3 /* OOVector.h */; }; - 1A9404A40BAF462D005F6CF3 /* OOVector.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9404A20BAF462D005F6CF3 /* OOVector.m */; settings = {COMPILER_FLAGS = "$OO_MATHS_OPTS -Wmissing-field-initializers"; }; }; - 1A9405380BAF4FA6005F6CF3 /* OOMatrix.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9405360BAF4FA6005F6CF3 /* OOMatrix.h */; }; - 1A9405390BAF4FA6005F6CF3 /* OOMatrix.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9405370BAF4FA6005F6CF3 /* OOMatrix.m */; settings = {COMPILER_FLAGS = "$OO_MATHS_OPTS -Wmissing-field-initializers"; }; }; - 1A94057F0BAF52AD005F6CF3 /* OOQuaternion.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A94057D0BAF52AD005F6CF3 /* OOQuaternion.h */; }; - 1A9405800BAF52AD005F6CF3 /* OOQuaternion.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A94057E0BAF52AD005F6CF3 /* OOQuaternion.m */; }; - 1A94062B0BAF6170005F6CF3 /* OOBoundingBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9406290BAF6170005F6CF3 /* OOBoundingBox.h */; }; - 1A9406840BAF66D6005F6CF3 /* OOVoxel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9406820BAF66D6005F6CF3 /* OOVoxel.h */; }; - 1A9406850BAF66D6005F6CF3 /* OOVoxel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9406830BAF66D6005F6CF3 /* OOVoxel.m */; settings = {COMPILER_FLAGS = $OO_MATHS_OPTS; }; }; - 1A9406B40BAF67BF005F6CF3 /* OOTriangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9406B20BAF67BF005F6CF3 /* OOTriangle.h */; }; - 1A9438CF17F84C560011F80B /* OOExplosionCloudEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9438CD17F84C560011F80B /* OOExplosionCloudEntity.h */; }; - 1A9438D017F84C560011F80B /* OOExplosionCloudEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9438CE17F84C560011F80B /* OOExplosionCloudEntity.m */; }; - 1A95C040118A450E002EE302 /* OOConvertCubeMapToLatLong.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A95C03E118A450E002EE302 /* OOConvertCubeMapToLatLong.h */; }; - 1A95C041118A450E002EE302 /* OOConvertCubeMapToLatLong.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A95C03F118A450E002EE302 /* OOConvertCubeMapToLatLong.m */; settings = {COMPILER_FLAGS = "$OO_MATHS_OPTS -ffast-math"; }; }; - 1A97528F15DECA6600108FA5 /* OOFullScreenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A97528D15DECA6600108FA5 /* OOFullScreenWindow.h */; }; - 1A97529015DECA6600108FA5 /* OOFullScreenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A97528E15DECA6600108FA5 /* OOFullScreenWindow.m */; }; - 1A97D77F12FDBB9B0009D74A /* OOQuiriumCascadeEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A97D77312FDB6610009D74A /* OOQuiriumCascadeEntity.m */; }; - 1A9FCF2315DAC8E100E965D5 /* OOMacSnowLeopardFullScreenController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9FCF2115DAC8E100E965D5 /* OOMacSnowLeopardFullScreenController.h */; }; - 1A9FCF2415DAC8E100E965D5 /* OOMacSnowLeopardFullScreenController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9FCF2215DAC8E100E965D5 /* OOMacSnowLeopardFullScreenController.m */; }; - 1A9FCF2615DAC9BC00E965D5 /* GameController+FullScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9FCF2515DAC9BC00E965D5 /* GameController+FullScreen.m */; }; - 1AA085FE182578AF007CCAEB /* OOALBufferedSound.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA085EE182578AF007CCAEB /* OOALBufferedSound.h */; }; - 1AA085FF182578AF007CCAEB /* OOALBufferedSound.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA085EF182578AF007CCAEB /* OOALBufferedSound.m */; }; - 1AA08602182578AF007CCAEB /* OOALMusic.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA085F2182578AF007CCAEB /* OOALMusic.h */; }; - 1AA08603182578AF007CCAEB /* OOALMusic.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA085F3182578AF007CCAEB /* OOALMusic.m */; }; - 1AA08604182578AF007CCAEB /* OOALSound.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA085F4182578AF007CCAEB /* OOALSound.h */; }; - 1AA08605182578AF007CCAEB /* OOALSound.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA085F5182578AF007CCAEB /* OOALSound.m */; }; - 1AA08606182578AF007CCAEB /* OOALSoundChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA085F6182578AF007CCAEB /* OOALSoundChannel.h */; }; - 1AA08607182578AF007CCAEB /* OOALSoundChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA085F7182578AF007CCAEB /* OOALSoundChannel.m */; }; - 1AA08608182578AF007CCAEB /* OOALSoundDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA085F8182578AF007CCAEB /* OOALSoundDecoder.h */; }; - 1AA08609182578AF007CCAEB /* OOALSoundDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA085F9182578AF007CCAEB /* OOALSoundDecoder.m */; settings = {COMPILER_FLAGS = "-Wno-unused-variable"; }; }; - 1AA0860A182578AF007CCAEB /* OOALSoundMixer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA085FA182578AF007CCAEB /* OOALSoundMixer.h */; }; - 1AA0860B182578AF007CCAEB /* OOALSoundMixer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA085FB182578AF007CCAEB /* OOALSoundMixer.m */; }; - 1AA0860C182578AF007CCAEB /* OOALStreamedSound.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA085FC182578AF007CCAEB /* OOALStreamedSound.h */; }; - 1AA0860D182578AF007CCAEB /* OOALStreamedSound.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA085FD182578AF007CCAEB /* OOALStreamedSound.m */; }; - 1AA08611182578B8007CCAEB /* OOOpenAL.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA0860E182578B8007CCAEB /* OOOpenAL.h */; }; - 1AA08612182578B8007CCAEB /* OOOpenALController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA0860F182578B8007CCAEB /* OOOpenALController.h */; }; - 1AA08613182578B8007CCAEB /* OOOpenALController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA08610182578B8007CCAEB /* OOOpenALController.m */; }; - 1AA0861618257A11007CCAEB /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AA0861518257A11007CCAEB /* OpenAL.framework */; }; - 1AA59C6C1780396C007C7373 /* OOJSWormhole.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA59C6A1780396C007C7373 /* OOJSWormhole.h */; }; - 1AA59C6D1780396C007C7373 /* OOJSWormhole.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA59C6B1780396C007C7373 /* OOJSWormhole.m */; }; - 1AA7FCAB10C2B9BA0058FBED /* OOPlanetDrawable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA7FCA910C2B9BA0058FBED /* OOPlanetDrawable.h */; }; - 1AA7FCAC10C2B9BA0058FBED /* OOPlanetDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA7FCAA10C2B9BA0058FBED /* OOPlanetDrawable.m */; }; - 1AA7FCAF10C2BA3B0058FBED /* OOPlanetData.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AA7FCAD10C2BA3B0058FBED /* OOPlanetData.c */; }; - 1AA7FCB010C2BA3B0058FBED /* OOPlanetData.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA7FCAE10C2BA3B0058FBED /* OOPlanetData.h */; }; - 1AA7FD1E10C2C3750058FBED /* OOPlanetEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA7FD1C10C2C3750058FBED /* OOPlanetEntity.h */; }; - 1AA7FD1F10C2C3750058FBED /* OOPlanetEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA7FD1D10C2C3750058FBED /* OOPlanetEntity.m */; }; - 1AA7FDDC10C2DC800058FBED /* OOSunEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA7FDDA10C2DC800058FBED /* OOSunEntity.h */; }; - 1AA7FDDD10C2DC800058FBED /* OOSunEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA7FDDB10C2DC800058FBED /* OOSunEntity.m */; }; - 1AA7FE2D10C2F2070058FBED /* OOTextureGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA7FE2B10C2F2070058FBED /* OOTextureGenerator.h */; }; - 1AA7FE2E10C2F2070058FBED /* OOTextureGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA7FE2C10C2F2070058FBED /* OOTextureGenerator.m */; }; - 1AA7FE3410C2F26A0058FBED /* OOPlanetTextureGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA7FE3210C2F26A0058FBED /* OOPlanetTextureGenerator.h */; }; - 1AA7FE3510C2F26A0058FBED /* OOPlanetTextureGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA7FE3310C2F26A0058FBED /* OOPlanetTextureGenerator.m */; settings = {COMPILER_FLAGS = "$OO_MATHS_OPTS -ffast-math"; }; }; - 1AA82C8A0CC10E700023B797 /* OOJSWorldScripts.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA82C820CC10E3D0023B797 /* OOJSWorldScripts.m */; }; - 1AAB9A980D779F4500A9F424 /* OOCocoa.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AAB9A960D779F3C00A9F424 /* OOCocoa.m */; settings = {COMPILER_FLAGS = "-Wno-objc-protocol-method-implementation"; }; }; - 1AABA83E11B941D1003487D5 /* OOPixMapTextureLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AABA83C11B941D1003487D5 /* OOPixMapTextureLoader.h */; }; - 1AABA83F11B941D1003487D5 /* OOPixMapTextureLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AABA83D11B941D1003487D5 /* OOPixMapTextureLoader.m */; }; - 1AAEE9DA161F7523003A5A1E /* OOStringExpander.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AAEE9D8161F7523003A5A1E /* OOStringExpander.h */; }; - 1AAEE9DB161F7523003A5A1E /* OOStringExpander.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AAEE9D9161F7523003A5A1E /* OOStringExpander.m */; }; - 1AAF56170F1A198400A2F2E6 /* Comparison.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AAF56160F1A198400A2F2E6 /* Comparison.h */; }; - 1AB01ABE0BB15AED00F1B949 /* OOTextureScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB01ABC0BB15AED00F1B949 /* OOTextureScaling.h */; }; - 1AB01B5F0BB1639600F1B949 /* OOTextureScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AB01ABD0BB15AED00F1B949 /* OOTextureScaling.m */; }; - 1AB01BBB0BB16A8A00F1B949 /* OOFastArithmetic.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB01BB90BB16A8A00F1B949 /* OOFastArithmetic.h */; }; - 1AB2AAFA0C4CE0CC0008CF4E /* OOOXPVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB2AAF80C4CE0CC0008CF4E /* OOOXPVerifier.h */; }; - 1AB2AAFB0C4CE0CC0008CF4E /* OOOXPVerifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AB2AAF90C4CE0CC0008CF4E /* OOOXPVerifier.m */; }; - 1AB4AEB80D688AD9003076D6 /* OOLogHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB4AEB60D688AD9003076D6 /* OOLogHeader.h */; }; - 1AB4AEB90D688AD9003076D6 /* OOLogHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AB4AEB70D688AD9003076D6 /* OOLogHeader.m */; settings = {COMPILER_FLAGS = $SNAPSHOT_MACROS; }; }; - 1AB5E1EF12BD628500C334DD /* OOJoystickManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB5E1ED12BD628500C334DD /* OOJoystickManager.h */; }; - 1AB5E1F012BD628500C334DD /* OOJoystickManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AB5E1EE12BD628500C334DD /* OOJoystickManager.m */; settings = {COMPILER_FLAGS = "-fvisibility=default"; }; }; - 1AB6963C191D85F600E4B232 /* OOStandaloneAtmosphereGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB6963A191D85F600E4B232 /* OOStandaloneAtmosphereGenerator.h */; }; - 1AB6963D191D85F600E4B232 /* OOStandaloneAtmosphereGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AB6963B191D85F600E4B232 /* OOStandaloneAtmosphereGenerator.m */; }; - 1AB7761012CA2EE0001478BB /* libjs_for_oolite.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AB7760212CA2E53001478BB /* libjs_for_oolite.a */; }; - 1AB784F90D554F7B00517983 /* OOJSSoundSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB784F70D554F7B00517983 /* OOJSSoundSource.h */; }; - 1AB784FA0D554F7B00517983 /* OOJSSoundSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AB784F80D554F7B00517983 /* OOJSSoundSource.m */; }; - 1AB8128F0E90179C00A84923 /* TextureStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 25161145099544390037C2E1 /* TextureStore.m */; }; - 1AB812900E90179D00A84923 /* TextureStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 25161134099544390037C2E1 /* TextureStore.h */; }; - 1AB813090E90D8E500A84923 /* OOLogOutputHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AB813070E90D8E500A84923 /* OOLogOutputHandler.m */; }; - 1AB8130A0E90D8E500A84923 /* OOLogOutputHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB813080E90D8E500A84923 /* OOLogOutputHandler.h */; }; - 1AB9AE8B107F459B00B6F3CE /* OOPolygonSprite.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB9AE89107F459B00B6F3CE /* OOPolygonSprite.h */; }; - 1AB9AE8C107F459B00B6F3CE /* OOPolygonSprite.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AB9AE8A107F459B00B6F3CE /* OOPolygonSprite.m */; }; - 1ABA415E15ACBB6700F7E841 /* DockEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABA415C15ACBB6700F7E841 /* DockEntity.h */; }; - 1ABA415F15ACBB6700F7E841 /* DockEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ABA415D15ACBB6700F7E841 /* DockEntity.m */; }; - 1ABA416215ADAB8D00F7E841 /* OOJSDock.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABA416015ADAB8D00F7E841 /* OOJSDock.h */; }; - 1ABA416315ADAB8D00F7E841 /* OOJSDock.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ABA416115ADAB8D00F7E841 /* OOJSDock.m */; }; - 1ABAD7310F350B3400FD2CBF /* OOShipGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ABAD72F0F350B3400FD2CBF /* OOShipGroup.m */; }; - 1ABAD7320F350B3400FD2CBF /* OOShipGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABAD7300F350B3400FD2CBF /* OOShipGroup.h */; }; - 1ABB688C0D044306008BE96D /* OOLoggingExtended.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABB688B0D044306008BE96D /* OOLoggingExtended.h */; }; - 1ABC03ED0EF86110003B740A /* OOCrosshairs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABC03EB0EF86110003B740A /* OOCrosshairs.h */; }; - 1ABC03EE0EF86110003B740A /* OOCrosshairs.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ABC03EC0EF86110003B740A /* OOCrosshairs.m */; }; - 1ABC47FE0F155F0500B977AD /* OOJSFunction.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABC47FC0F155F0500B977AD /* OOJSFunction.h */; }; - 1ABC47FF0F155F0500B977AD /* OOJSFunction.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ABC47FD0F155F0500B977AD /* OOJSFunction.m */; }; - 1ABDBA3B0EB365D90086BC3D /* OOIsNumberLiteral.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ABDBA390EB365D90086BC3D /* OOIsNumberLiteral.m */; }; - 1ABDBA3C0EB365D90086BC3D /* OOIsNumberLiteral.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABDBA3A0EB365D90086BC3D /* OOIsNumberLiteral.h */; }; - 1ABF219B12D691B300075821 /* Oolite.docktileplugin in Copy Plug-ins */ = {isa = PBXBuildFile; fileRef = 1A01BCE711C569DF0011197F /* Oolite.docktileplugin */; }; - 1AC0F29E12E1DADC00ECBBB0 /* OOJSEngineDebuggerHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AC0F29D12E1DADC00ECBBB0 /* OOJSEngineDebuggerHelpers.m */; }; - 1AC27A0F0EA7E9940054E5F0 /* OOJSEquipmentInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AC27A0D0EA7E9940054E5F0 /* OOJSEquipmentInfo.h */; }; - 1AC27A100EA7E9940054E5F0 /* OOJSEquipmentInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AC27A0E0EA7E9940054E5F0 /* OOJSEquipmentInfo.m */; }; - 1AC545060D4D228400C90E5B /* OOEncodingConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AC545040D4D228400C90E5B /* OOEncodingConverter.h */; }; - 1AC545070D4D228400C90E5B /* OOEncodingConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AC545050D4D228400C90E5B /* OOEncodingConverter.m */; }; - 1AC775E20C2DD4E900ECFF3B /* OODebugGLDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AC775E00C2DD4E900ECFF3B /* OODebugGLDrawing.h */; }; - 1AC775E30C2DD4E900ECFF3B /* OODebugGLDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AC775E10C2DD4E900ECFF3B /* OODebugGLDrawing.m */; }; - 1ACB1D18118DCBC0007B9A1F /* OOConcreteTexture.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ACB1D16118DCBC0007B9A1F /* OOConcreteTexture.h */; }; - 1ACB1D19118DCBC0007B9A1F /* OOConcreteTexture.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ACB1D17118DCBC0007B9A1F /* OOConcreteTexture.m */; }; - 1ACB1D1C118DCE5A007B9A1F /* OOTextureInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ACB1D1B118DCE5A007B9A1F /* OOTextureInternal.h */; }; - 1ACBF0AD0D82F79600CC005F /* OOSoundSourcePool.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ACBF06F0D82DF9B00CC005F /* OOSoundSourcePool.h */; }; - 1ACBF0AE0D82F79800CC005F /* OOSoundSourcePool.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ACBF0700D82DF9B00CC005F /* OOSoundSourcePool.m */; }; - 1ACEA3490C91507000C7CE97 /* OORoleSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ACEA3470C91507000C7CE97 /* OORoleSet.h */; }; - 1ACEA34A0C91507000C7CE97 /* OORoleSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ACEA3480C91507000C7CE97 /* OORoleSet.m */; }; - 1ACEA6BF0C91DA3E00C7CE97 /* OOJSGlobal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ACEA6BD0C91DA3E00C7CE97 /* OOJSGlobal.h */; }; - 1ACEA6C00C91DA3E00C7CE97 /* OOJSGlobal.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ACEA6BE0C91DA3E00C7CE97 /* OOJSGlobal.m */; }; - 1ACEA7280C91DF2800C7CE97 /* OOJSMissionVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ACEA7260C91DF2800C7CE97 /* OOJSMissionVariables.h */; }; - 1ACEA7290C91DF2800C7CE97 /* OOJSMissionVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ACEA7270C91DF2800C7CE97 /* OOJSMissionVariables.m */; }; - 1ACEA7AA0C91E32800C7CE97 /* OOJSMission.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ACEA7A80C91E32800C7CE97 /* OOJSMission.h */; }; - 1ACEA7AB0C91E32800C7CE97 /* OOJSMission.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ACEA7A90C91E32800C7CE97 /* OOJSMission.m */; }; - 1AD1F4FF0CD9E83700EAE520 /* NSThreadOOExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AD1F4C80CD9E42A00EAE520 /* NSThreadOOExtensions.m */; }; - 1AD1F5000CD9E83800EAE520 /* NSThreadOOExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD1F4C70CD9E42A00EAE520 /* NSThreadOOExtensions.h */; }; - 1AD2E31618F17BC700239EBB /* OOShipLibraryDescriptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD2E31418F17BC700239EBB /* OOShipLibraryDescriptions.h */; }; - 1AD2E31718F17BC700239EBB /* OOShipLibraryDescriptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AD2E31518F17BC700239EBB /* OOShipLibraryDescriptions.m */; }; - 1AD3C339163A92F600469C4D /* OOOpenGLStateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AD3C338163A92F600469C4D /* OOOpenGLStateManager.m */; }; - 1AD8522517947BD600CBE743 /* OOHPVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD8522317947BD600CBE743 /* OOHPVector.h */; }; - 1AD8522617947BD600CBE743 /* OOHPVector.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AD8522417947BD600CBE743 /* OOHPVector.m */; }; - 1AD8522E17947C9500CBE743 /* OOJSPopulatorDefinition.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD8522C17947C9400CBE743 /* OOJSPopulatorDefinition.h */; }; - 1AD8522F17947C9500CBE743 /* OOJSPopulatorDefinition.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AD8522D17947C9500CBE743 /* OOJSPopulatorDefinition.m */; }; - 1ADA564810CD68D800E891B8 /* OOStellarBody.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ADA564710CD68D800E891B8 /* OOStellarBody.h */; }; - 1ADA8AB30F42DBA80001BEC9 /* OODeepCopy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ADA8AB10F42DBA80001BEC9 /* OODeepCopy.h */; }; - 1ADA8AB40F42DBA80001BEC9 /* OODeepCopy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ADA8AB20F42DBA80001BEC9 /* OODeepCopy.m */; }; - 1ADBA5500BD0F173008FC99C /* OOBasicMaterial.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ADBA54E0BD0F173008FC99C /* OOBasicMaterial.h */; }; - 1ADBA5510BD0F173008FC99C /* OOBasicMaterial.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ADBA54F0BD0F173008FC99C /* OOBasicMaterial.m */; }; - 1ADF5CEC0B9DF59A00FDB2A3 /* OOCacheManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A231A170B9D8B1B00EF0852 /* OOCacheManager.m */; }; - 1AE1A94115D2C4E4003F4D56 /* OOFullScreenController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE1A93F15D2C4E4003F4D56 /* OOFullScreenController.h */; }; - 1AE1A94215D2C4E4003F4D56 /* OOFullScreenController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AE1A94015D2C4E4003F4D56 /* OOFullScreenController.m */; }; - 1AE242C51054226900EAA7F2 /* OOFlasherEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE242C31054226900EAA7F2 /* OOFlasherEntity.h */; }; - 1AE242C61054226900EAA7F2 /* OOFlasherEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AE242C41054226900EAA7F2 /* OOFlasherEntity.m */; }; - 1AE24373105439B500EAA7F2 /* OOLightParticleEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE24371105439B500EAA7F2 /* OOLightParticleEntity.h */; }; - 1AE24374105439B500EAA7F2 /* OOLightParticleEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AE24372105439B500EAA7F2 /* OOLightParticleEntity.m */; }; - 1AE3455712CB77AE00FD8C62 /* libogg_for_oolite.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AE3455012CB77A700FD8C62 /* libogg_for_oolite.a */; }; - 1AE3455812CB77B000FD8C62 /* libvorbis_for_oolite.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AE3455612CB77AC00FD8C62 /* libvorbis_for_oolite.a */; }; - 1AE7325012F75D470045513D /* OOLaserShotEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE7324E12F75D470045513D /* OOLaserShotEntity.h */; }; - 1AE7325112F75D470045513D /* OOLaserShotEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AE7324F12F75D470045513D /* OOLaserShotEntity.m */; }; - 1AE8837412EF91560075814F /* Sparkle.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AE8837312EF91560075814F /* Sparkle.framework */; }; - 1AE8837612EF91810075814F /* Sparkle.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1AE8837312EF91560075814F /* Sparkle.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 1AE8838012EF91E80075814F /* SparkleVerificationKey.pem in Resources */ = {isa = PBXBuildFile; fileRef = 1AE8837F12EF91E80075814F /* SparkleVerificationKey.pem */; }; - 1AEA229E12CBD18600EC0F43 /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AEA229D12CBD18600EC0F43 /* CoreServices.framework */; }; - 1AEB491A119D5AAA007BD514 /* OORegExpMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEB4918119D5AAA007BD514 /* OORegExpMatcher.h */; }; - 1AEB491B119D5AAA007BD514 /* OORegExpMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AEB4919119D5AAA007BD514 /* OORegExpMatcher.m */; }; - 1AECE9E01177959F003986A8 /* OOPixMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AECE9DF1177959F003986A8 /* OOPixMap.h */; }; - 1AECE9EF11779910003986A8 /* OOPixMap.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AECE9EE11779910003986A8 /* OOPixMap.m */; }; - 1AED2D0C0C04586C004A1118 /* OOGraphicsResetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AED2D0A0C04586C004A1118 /* OOGraphicsResetManager.h */; }; - 1AED2D0D0C04586C004A1118 /* OOGraphicsResetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AED2D0B0C04586C004A1118 /* OOGraphicsResetManager.m */; }; - 1AEF57D312E51DDB00546444 /* OOJSEngineNativeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEF57D212E51DDB00546444 /* OOJSEngineNativeWrappers.h */; }; - 1AF4AF4A15B858AA009243BE /* OOWeakSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF4AF4815B858AA009243BE /* OOWeakSet.h */; }; - 1AF4AF4B15B858AA009243BE /* OOWeakSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AF4AF4915B858AA009243BE /* OOWeakSet.m */; }; - 2512833E09BA27C100F43D55 /* Octree.m in Sources */ = {isa = PBXBuildFile; fileRef = 2512833C09BA27C100F43D55 /* Octree.m */; settings = {COMPILER_FLAGS = $OO_MATHS_OPTS; }; }; - 2512833F09BA27C100F43D55 /* Octree.h in Headers */ = {isa = PBXBuildFile; fileRef = 2512833D09BA27C100F43D55 /* Octree.h */; }; - 2512834209BA27EC00F43D55 /* OOMeshToOctreeConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2512834009BA27EC00F43D55 /* OOMeshToOctreeConverter.h */; }; - 2512834609BA281500F43D55 /* CollisionRegion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2512834409BA281500F43D55 /* CollisionRegion.h */; }; - 2512834709BA281500F43D55 /* CollisionRegion.m in Sources */ = {isa = PBXBuildFile; fileRef = 2512834509BA281500F43D55 /* CollisionRegion.m */; settings = {COMPILER_FLAGS = $OO_MATHS_OPTS; }; }; - 25160E2F0995362F0037C2E1 /* OOCocoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 25160E2E0995362F0037C2E1 /* OOCocoa.h */; }; - 25161153099544390037C2E1 /* AI.m in Sources */ = {isa = PBXBuildFile; fileRef = 25161101099544380037C2E1 /* AI.m */; }; - 25161158099544390037C2E1 /* AI.h in Headers */ = {isa = PBXBuildFile; fileRef = 25161106099544390037C2E1 /* AI.h */; }; - 2516115A099544390037C2E1 /* OOTrumble.m in Sources */ = {isa = PBXBuildFile; fileRef = 25161108099544390037C2E1 /* OOTrumble.m */; }; - 2516115D099544390037C2E1 /* GameController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2516110B099544390037C2E1 /* GameController.h */; }; - 2516115E099544390037C2E1 /* GameController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2516110C099544390037C2E1 /* GameController.m */; settings = {COMPILER_FLAGS = "-Wno-missing-method-return-type"; }; }; - 25161162099544390037C2E1 /* OOTrumble.h in Headers */ = {isa = PBXBuildFile; fileRef = 25161110099544390037C2E1 /* OOTrumble.h */; }; - 25161168099544390037C2E1 /* OOSound.h in Headers */ = {isa = PBXBuildFile; fileRef = 25161116099544390037C2E1 /* OOSound.h */; }; - 2516116D099544390037C2E1 /* OOCharacter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2516111B099544390037C2E1 /* OOCharacter.m */; }; - 2516116E099544390037C2E1 /* OOCharacter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2516111C099544390037C2E1 /* OOCharacter.h */; }; - 25161178099544390037C2E1 /* GuiDisplayGen.m in Sources */ = {isa = PBXBuildFile; fileRef = 25161126099544390037C2E1 /* GuiDisplayGen.m */; }; - 25161179099544390037C2E1 /* GuiDisplayGen.h in Headers */ = {isa = PBXBuildFile; fileRef = 25161127099544390037C2E1 /* GuiDisplayGen.h */; }; - 2516117D099544390037C2E1 /* HeadUpDisplay.m in Sources */ = {isa = PBXBuildFile; fileRef = 2516112B099544390037C2E1 /* HeadUpDisplay.m */; }; - 2516117E099544390037C2E1 /* HeadUpDisplay.h in Headers */ = {isa = PBXBuildFile; fileRef = 2516112C099544390037C2E1 /* HeadUpDisplay.h */; }; - 2516118B099544390037C2E1 /* ResourceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 25161139099544390037C2E1 /* ResourceManager.m */; }; - 2516118C099544390037C2E1 /* ResourceManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2516113A099544390037C2E1 /* ResourceManager.h */; }; - 25161195099544390037C2E1 /* Universe.m in Sources */ = {isa = PBXBuildFile; fileRef = 25161143099544390037C2E1 /* Universe.m */; settings = {COMPILER_FLAGS = $SNAPSHOT_MACROS; }; }; - 25161196099544390037C2E1 /* Universe.h in Headers */ = {isa = PBXBuildFile; fileRef = 25161144099544390037C2E1 /* Universe.h */; }; - 2576E7B309B4F418007410F7 /* MyOpenGLView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2576E7B209B4F418007410F7 /* MyOpenGLView.h */; }; - 25F3E6310994F033002F25FD /* legacy_random.h in Headers */ = {isa = PBXBuildFile; fileRef = 25F3E6300994F033002F25FD /* legacy_random.h */; }; - 25F3E6330994F04C002F25FD /* legacy_random.c in Sources */ = {isa = PBXBuildFile; fileRef = 25F3E6320994F04C002F25FD /* legacy_random.c */; }; - 25F3E63B0994F08A002F25FD /* OOOpenGL.h in Headers */ = {isa = PBXBuildFile; fileRef = 25F3E63A0994F08A002F25FD /* OOOpenGL.h */; }; - 25F3E6BD0994F30A002F25FD /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 25F3E6BC0994F30A002F25FD /* main.m */; }; - 25F3E8A70994FE65002F25FD /* oolite-document.icns in Resources */ = {isa = PBXBuildFile; fileRef = 25F3E8A40994FE65002F25FD /* oolite-document.icns */; }; - 25F3E8A80994FE65002F25FD /* oolite-expansion-document.icns in Resources */ = {isa = PBXBuildFile; fileRef = 25F3E8A50994FE65002F25FD /* oolite-expansion-document.icns */; }; - 25F3E8A90994FE65002F25FD /* oolite-icon.icns in Resources */ = {isa = PBXBuildFile; fileRef = 25F3E8A60994FE65002F25FD /* oolite-icon.icns */; }; - 25F3E8B40994FE9B002F25FD /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 25F3E8B30994FE9B002F25FD /* InfoPlist.strings */; }; - 25F46752099695D5009483BF /* OoliteApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 25F46750099695D5009483BF /* OoliteApp.h */; }; - 25F46753099695D5009483BF /* OoliteApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 25F46751099695D5009483BF /* OoliteApp.m */; }; - 25F4676509969672009483BF /* MyOpenGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = 25F4676309969672009483BF /* MyOpenGLView.m */; }; - 2B4CDFEC107B3D8400526C98 /* OOJSManifest.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B4CDFEA107B3D8400526C98 /* OOJSManifest.h */; }; - 2B4CDFED107B3D8400526C98 /* OOJSManifest.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B4CDFEB107B3D8400526C98 /* OOJSManifest.m */; }; - 4F1F155D1B0FCB11001C1591 /* OOCheckPListSyntaxVerifierStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F1F155C1B0FCB11001C1591 /* OOCheckPListSyntaxVerifierStage.m */; }; - 4F1F155F1B0FCB76001C1591 /* OOCheckPListSyntaxVerifierStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F1F155E1B0FCB76001C1591 /* OOCheckPListSyntaxVerifierStage.h */; }; - 4F1F15611B0FCBFA001C1591 /* OOCheckJSSyntaxVerifierStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F1F15601B0FCBFA001C1591 /* OOCheckJSSyntaxVerifierStage.m */; }; - 4F1F15631B0FCC17001C1591 /* OOCheckJSSyntaxVerifierStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F1F15621B0FCC17001C1591 /* OOCheckJSSyntaxVerifierStage.h */; }; - B33A44F1199E6745000B45AE /* OOOpenGLMatrixManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B33A44EF199E6745000B45AE /* OOOpenGLMatrixManager.h */; }; - B33A44F2199E6745000B45AE /* OOOpenGLMatrixManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B33A44F0199E6745000B45AE /* OOOpenGLMatrixManager.m */; }; - B3B46C871A0D053D00D6C39B /* OOSystemDescriptionManager.h in Copy Plug-ins */ = {isa = PBXBuildFile; fileRef = B3B46C851A0D053D00D6C39B /* OOSystemDescriptionManager.h */; }; - B3B46C881A0D053D00D6C39B /* OOSystemDescriptionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B3B46C851A0D053D00D6C39B /* OOSystemDescriptionManager.h */; }; - B3B46C891A0D053D00D6C39B /* OOSystemDescriptionManager.m in Copy Plug-ins */ = {isa = PBXBuildFile; fileRef = B3B46C861A0D053D00D6C39B /* OOSystemDescriptionManager.m */; }; - B3B46C8A1A0D053D00D6C39B /* OOSystemDescriptionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B3B46C861A0D053D00D6C39B /* OOSystemDescriptionManager.m */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 1A01BCE611C569DF0011197F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1A01BCDF11C569DF0011197F /* Oolite-docktile.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 8D5B49B6048680CD000E48DA; - remoteInfo = "Oolite-docktile"; - }; - 1A1BB8A31767DD3500050283 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1AB2D61C15B86EA400177AAF /* OoliteUnitTests.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 1A0CD53615AF0BCE00970505; - remoteInfo = OoliteUnitTests; - }; - 1A3E019511C574AC000FF226 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1A3E018E11C574AC000FF226 /* Oolite-importer.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 1A1AB1C60909BF46001039FA; - remoteInfo = "Oolite-importer"; - }; - 1A3E01A811C574E1000FF226 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1A3E018E11C574AC000FF226 /* Oolite-importer.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = 8D57630D048677EA00EA77CD; - remoteInfo = "Oolite-importer"; - }; - 1A78B5D812D74CF900D42EE7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1A78B5D412D74CF900D42EE7 /* libpng.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 1A71E6F30BCE340C00CD5C13; - remoteInfo = libpng; - }; - 1A78B5DB12D74D0600D42EE7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1A78B5D412D74CF900D42EE7 /* libpng.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = 1A71E6F20BCE340C00CD5C13; - remoteInfo = libpng; - }; - 1A7E3A02180AC8B100576095 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1A0519340C7CCAC900BA5CCA /* DebugBundle.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 8D5B49B6048680CD000E48DA; - remoteInfo = "Debug Bundle"; - }; - 1A7E3A04180AC8BF00576095 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1A0519340C7CCAC900BA5CCA /* DebugBundle.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = 8D5B49AC048680CD000E48DA; - remoteInfo = "Debug Bundle"; - }; - 1A8FA92612F0C694008FF5A2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1AB775FC12CA2E53001478BB /* libjs.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 1AC16B5912F0905200907218; - remoteInfo = jsoplengen; - }; - 1A8FA92812F0C694008FF5A2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1AB775FC12CA2E53001478BB /* libjs.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 1AC16CBF12F0943F00907218; - remoteInfo = jskwgen; - }; - 1AB7760112CA2E53001478BB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1AB775FC12CA2E53001478BB /* libjs.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = D2AAC046055464E500DB518D; - remoteInfo = libjs; - }; - 1AB7760312CA2E53001478BB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1AB775FC12CA2E53001478BB /* libjs.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 1AB25ACA12CA1CB100C67F42; - remoteInfo = libnspr; - }; - 1AB7763412CA33FB001478BB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1AB775FC12CA2E53001478BB /* libjs.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = D2AAC045055464E500DB518D; - remoteInfo = libjs; - }; - 1ABF219912D691A300075821 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1A01BCDF11C569DF0011197F /* Oolite-docktile.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = 8D5B49AC048680CD000E48DA; - remoteInfo = "Oolite-docktile"; - }; - 1AD05EB912CD1B4700704F1D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1AB775FC12CA2E53001478BB /* libjs.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 1AD05E0812CD189100704F1D; - remoteInfo = "jsapi-tests"; - }; - 1AD267550C83052600B4BFD1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0865423506B8447D000CA0AB; - remoteInfo = Oolite; - }; - 1AE3454F12CB77A700FD8C62 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1AE3454B12CB77A700FD8C62 /* Ogg.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 1ADE32A40975807900961AE2; - remoteInfo = LibOgg; - }; - 1AE3455512CB77AC00FD8C62 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1AE3455112CB77AC00FD8C62 /* Vorbis.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 1ADE327709757FBE00961AE2; - remoteInfo = LibVorbis; - }; - 1AE3455912CB77CB00FD8C62 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1AE3454B12CB77A700FD8C62 /* Ogg.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = 1ADE32A30975807900961AE2; - remoteInfo = LibOgg; - }; - 1AE3455B12CB77CD00FD8C62 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1AE3455112CB77AC00FD8C62 /* Vorbis.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = 1ADE327609757FBE00961AE2; - remoteInfo = LibVorbis; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 1A09EF5B12BD0C5000BF7F48 /* Copy Plug-ins */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = Oolite.app/Contents/PlugIns; - dstSubfolderSpec = 16; - files = ( - B3B46C871A0D053D00D6C39B /* OOSystemDescriptionManager.h in Copy Plug-ins */, - B3B46C891A0D053D00D6C39B /* OOSystemDescriptionManager.m in Copy Plug-ins */, - 1ABF219B12D691B300075821 /* Oolite.docktileplugin in Copy Plug-ins */, - ); - name = "Copy Plug-ins"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1A5BF29C0916D49800BF238F /* Copy MDImporter */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 12; - dstPath = Contents/Library/Spotlight; - dstSubfolderSpec = 1; - files = ( - 1A3E019B11C574C2000FF226 /* Oolite.mdimporter in Copy MDImporter */, - ); - name = "Copy MDImporter"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1AE8837812EF91880075814F /* Copy Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - 1AE8837612EF91810075814F /* Sparkle.framework in Copy Frameworks */, - ); - name = "Copy Frameworks"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 06AFA01500A58FB77F000001 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = ""; }; - 083325DB09DDBCDE00F5B8E4 /* OOColor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOColor.h; sourceTree = ""; }; - 083325DC09DDBCDE00F5B8E4 /* OOColor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOColor.m; sourceTree = ""; }; - 0865432206B8447D000CA0AB /* Oolite.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Oolite.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 0878FD2F086EF845004CB752 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = ""; }; - 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; - 1A00248B1657B56E00EAE045 /* oolite-star-1-alt.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-star-1-alt.png"; sourceTree = ""; }; - 1A00248C1657B56E00EAE045 /* oolite-star-1-large.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-star-1-large.png"; sourceTree = ""; }; - 1A00248D1657B56E00EAE045 /* oolite-star-2-large.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-star-2-large.png"; sourceTree = ""; }; - 1A00248E1657B56E00EAE045 /* oolite-star-2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-star-2.png"; sourceTree = ""; }; - 1A00248F1657B56E00EAE045 /* oolite-star-3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-star-3.png"; sourceTree = ""; }; - 1A0024901657B56E00EAE045 /* oolite-star-4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-star-4.png"; sourceTree = ""; }; - 1A0024911657B56E00EAE045 /* oolite-star-5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-star-5.png"; sourceTree = ""; }; - 1A0024921657B56E00EAE045 /* oolite-star-6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-star-6.png"; sourceTree = ""; }; - 1A0024931657B56E00EAE045 /* oolite-star-7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-star-7.png"; sourceTree = ""; }; - 1A0024941657B56E00EAE045 /* oolite-star-8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-star-8.png"; sourceTree = ""; }; - 1A0024951657B56E00EAE045 /* oolite-star-9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-star-9.png"; sourceTree = ""; }; - 1A00C65310663D3700A8737D /* OOProfilingStopwatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOProfilingStopwatch.h; sourceTree = ""; }; - 1A00C65410663D3700A8737D /* OOProfilingStopwatch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOProfilingStopwatch.m; sourceTree = ""; }; - 1A00C7B810667D3100A8737D /* OOECMBlastEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOECMBlastEntity.h; sourceTree = ""; }; - 1A00C7B910667D3100A8737D /* OOECMBlastEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOECMBlastEntity.m; sourceTree = ""; }; - 1A00C7DD1066814C00A8737D /* OOAsyncWorkManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOAsyncWorkManager.h; sourceTree = ""; }; - 1A00C7DE1066814C00A8737D /* OOAsyncWorkManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOAsyncWorkManager.m; sourceTree = ""; }; - 1A01574111034A86008EE36A /* ShipEntityLoadRestore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShipEntityLoadRestore.h; sourceTree = ""; }; - 1A01574211034A86008EE36A /* ShipEntityLoadRestore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShipEntityLoadRestore.m; sourceTree = ""; }; - 1A01BC6F11C5515B0011197F /* oolite-default-player-script.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-default-player-script.js"; sourceTree = ""; }; - 1A01BCDF11C569DF0011197F /* Oolite-docktile.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "Oolite-docktile.xcodeproj"; path = "Mac-specific/Oolite-docktile/Oolite-docktile.xcodeproj"; sourceTree = ""; }; - 1A02B4C01643DF6B0013749D /* oolite-contracts-cargo.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-contracts-cargo.js"; sourceTree = ""; }; - 1A02B4C11643DF6B0013749D /* oolite-contracts-helpers.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-contracts-helpers.js"; sourceTree = ""; }; - 1A02B4C21643DF6B0013749D /* oolite-contracts-passengers.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-contracts-passengers.js"; sourceTree = ""; }; - 1A02FD340EE048E8008F9B09 /* oolite-tangent-space-vertex.vertex */ = {isa = PBXFileReference; explicitFileType = sourcecode.glsl; fileEncoding = 4; path = "oolite-tangent-space-vertex.vertex"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.glsl; }; - 1A033F90132687DC006F9DB7 /* Quartz.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Quartz.framework; path = System/Library/Frameworks/Quartz.framework; sourceTree = SDKROOT; }; - 1A033FA213268821006F9DB7 /* OoliteReadMe.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = OoliteReadMe.pdf; sourceTree = ""; }; - 1A033FB613268ABB006F9DB7 /* OOPDFView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPDFView.h; sourceTree = ""; }; - 1A033FB713268ABB006F9DB7 /* OOPDFView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPDFView.m; sourceTree = ""; }; - 1A0365990D7CA0EE00B5F46F /* oolite-nebula-4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-nebula-4.png"; sourceTree = ""; }; - 1A0479E70DC9F81000EE1CD0 /* OOShipRegistry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOShipRegistry.h; sourceTree = ""; }; - 1A0479E80DC9F81000EE1CD0 /* OOShipRegistry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOShipRegistry.m; sourceTree = ""; }; - 1A047A430DCA0F4F00EE1CD0 /* NSDictionaryOOExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSDictionaryOOExtensions.h; sourceTree = ""; }; - 1A047A440DCA0F4F00EE1CD0 /* NSDictionaryOOExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSDictionaryOOExtensions.m; sourceTree = ""; }; - 1A047B7C0DCB3D7500EE1CD0 /* OOProbabilitySet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOProbabilitySet.h; sourceTree = ""; }; - 1A047B7D0DCB3D7500EE1CD0 /* OOProbabilitySet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOProbabilitySet.m; sourceTree = ""; }; - 1A0519340C7CCAC900BA5CCA /* DebugBundle.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = DebugBundle.xcodeproj; path = "Mac-specific/DebugBundle/DebugBundle.xcodeproj"; sourceTree = ""; }; - 1A05AFCB1879C2B800AFA7D1 /* OOOXZManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOOXZManager.h; sourceTree = ""; }; - 1A05AFCC1879C2B800AFA7D1 /* OOOXZManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOOXZManager.m; sourceTree = ""; }; - 1A062C8711B28D8A00727C1D /* NSObjectOOExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSObjectOOExtensions.h; sourceTree = ""; }; - 1A062C8811B28D8A00727C1D /* NSObjectOOExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSObjectOOExtensions.m; sourceTree = ""; }; - 1A06F3141196FB6F00AFA5B4 /* oolite-player-AI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = "oolite-player-AI.plist"; sourceTree = ""; }; - 1A0729D70EF56D1200B0F925 /* OOConvertSystemDescriptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOConvertSystemDescriptions.h; sourceTree = ""; }; - 1A0729D80EF56D1200B0F925 /* OOConvertSystemDescriptions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOConvertSystemDescriptions.m; sourceTree = ""; }; - 1A0729FC0EF5796500B0F925 /* OldSchoolPropertyListWriting.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OldSchoolPropertyListWriting.h; sourceTree = ""; }; - 1A0729FD0EF5796500B0F925 /* OldSchoolPropertyListWriting.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OldSchoolPropertyListWriting.m; sourceTree = ""; }; - 1A0730E817888C44008A1829 /* oolite-warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "oolite-warnings.xcconfig"; path = "src/Cocoa/oolite-warnings.xcconfig"; sourceTree = ""; }; - 1A0942C712D7C011003B6273 /* OOJSFrameCallbacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSFrameCallbacks.h; sourceTree = ""; }; - 1A0942C812D7C011003B6273 /* OOJSFrameCallbacks.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSFrameCallbacks.m; sourceTree = ""; }; - 1A0C3EDD1193306B007935E5 /* oolite-dust.vertex */ = {isa = PBXFileReference; explicitFileType = sourcecode.glsl; fileEncoding = 4; path = "oolite-dust.vertex"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.glsl; }; - 1A0C3EEA11933272007935E5 /* oolite-dust.fragment */ = {isa = PBXFileReference; explicitFileType = sourcecode.glsl; fileEncoding = 4; path = "oolite-dust.fragment"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.glsl; }; - 1A0DA2EC0D71D280009B0970 /* OOJSSpecialFunctions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSSpecialFunctions.h; sourceTree = ""; }; - 1A0DA2ED0D71D280009B0970 /* OOJSSpecialFunctions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSSpecialFunctions.m; sourceTree = ""; }; - 1A112739105994D000DF9D12 /* OOExhaustPlumeEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOExhaustPlumeEntity.h; sourceTree = ""; }; - 1A11273A105994D000DF9D12 /* OOExhaustPlumeEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOExhaustPlumeEntity.m; sourceTree = ""; }; - 1A115ED4158CFB4D005842DA /* splash@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "splash@2x.png"; sourceTree = ""; }; - 1A11C2AF11CFC35000F3EE77 /* OOJSEngineTimeManagement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSEngineTimeManagement.h; sourceTree = ""; }; - 1A11C2B011CFC35000F3EE77 /* OOJSEngineTimeManagement.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSEngineTimeManagement.m; sourceTree = ""; }; - 1A11F8480F35F60C001C886C /* OOJSShipGroup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSShipGroup.m; sourceTree = ""; }; - 1A11F8490F35F60C001C886C /* OOJSShipGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSShipGroup.h; sourceTree = ""; }; - 1A127F4112EC6A4400B65D9F /* OOTextureSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOTextureSprite.h; sourceTree = ""; }; - 1A127F4212EC6A4400B65D9F /* OOTextureSprite.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOTextureSprite.m; sourceTree = ""; }; - 1A1280F612ECA4ED00B65D9F /* OOJSFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSFont.h; sourceTree = ""; }; - 1A1280F712ECA4ED00B65D9F /* OOJSFont.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSFont.m; sourceTree = ""; }; - 1A143A4611EF22C5001BAB8D /* JAPersistentFileReference.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JAPersistentFileReference.h; sourceTree = ""; }; - 1A143A4711EF22C5001BAB8D /* JAPersistentFileReference.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JAPersistentFileReference.m; sourceTree = ""; }; - 1A1502F50C1201C30032F3E8 /* oolite-unknown-ship.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "oolite-unknown-ship.dat"; sourceTree = ""; }; - 1A1504490C12C50D0032F3E8 /* OOSkyDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOSkyDrawable.h; sourceTree = ""; }; - 1A15044A0C12C50D0032F3E8 /* OOSkyDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOSkyDrawable.m; sourceTree = ""; }; - 1A15049C0C12CA070032F3E8 /* OOProbabilisticTextureManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOProbabilisticTextureManager.h; sourceTree = ""; }; - 1A15049D0C12CA070032F3E8 /* OOProbabilisticTextureManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOProbabilisticTextureManager.m; sourceTree = ""; }; - 1A1616600D7DCFDC0094AE5B /* OOFilteringEnumerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOFilteringEnumerator.h; sourceTree = ""; }; - 1A1616610D7DCFDC0094AE5B /* OOFilteringEnumerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOFilteringEnumerator.m; sourceTree = ""; }; - 1A19783C117F81B10060DB56 /* OOPixMapChannelOperations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPixMapChannelOperations.h; sourceTree = ""; }; - 1A19783D117F81B10060DB56 /* OOPixMapChannelOperations.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPixMapChannelOperations.m; sourceTree = ""; }; - 1A1B24C313293ED2007A0940 /* exports-release.exp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.exports; name = "exports-release.exp"; path = "src/Cocoa/exports-release.exp"; sourceTree = ""; }; - 1A1D212D0D2BD4C100F4DEC2 /* bsd_string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bsd_string.h; path = src/BSDCompat/bsd_string.h; sourceTree = SOURCE_ROOT; }; - 1A1F2840105AAB7900ADB8C5 /* OOSparkEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOSparkEntity.h; sourceTree = ""; }; - 1A1F2841105AAB7900ADB8C5 /* OOSparkEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOSparkEntity.m; sourceTree = ""; }; - 1A1F6D0B180AC324002AD52E /* OOWaypointEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOWaypointEntity.h; sourceTree = ""; }; - 1A1F6D0C180AC324002AD52E /* OOWaypointEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOWaypointEntity.m; sourceTree = ""; }; - 1A1F6D14180AC371002AD52E /* OOJSWaypoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSWaypoint.h; sourceTree = ""; }; - 1A1F6D15180AC371002AD52E /* OOJSWaypoint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSWaypoint.m; sourceTree = ""; }; - 1A1F7DA6117B5BDB00332757 /* OOMaterialSpecifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOMaterialSpecifier.h; sourceTree = ""; }; - 1A1F7DA7117B5BDB00332757 /* OOMaterialSpecifier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOMaterialSpecifier.m; sourceTree = ""; }; - 1A20F7040F36EE0500156DE9 /* OOExcludeObjectEnumerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOExcludeObjectEnumerator.h; sourceTree = ""; }; - 1A20F7050F36EE0500156DE9 /* OOExcludeObjectEnumerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOExcludeObjectEnumerator.m; sourceTree = ""; }; - 1A21149A0DEA980800444CEB /* oolite-ball-turret.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "oolite-ball-turret.dat"; sourceTree = ""; }; - 1A21149D0DEA98D100444CEB /* oolite-ball-turret.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-ball-turret.png"; sourceTree = ""; }; - 1A2123261051892500530CDE /* shipdata-overrides.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = "shipdata-overrides.plist"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A23154E0B9C778400EF0852 /* solar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = solar.png; sourceTree = ""; }; - 1A23154F0B9C778400EF0852 /* splash.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = splash.png; sourceTree = ""; }; - 1A2315510B9C778400EF0852 /* trumblebox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = trumblebox.png; sourceTree = ""; }; - 1A2316DE0B9CFAD700EF0852 /* characters.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = characters.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A2316E00B9CFAD700EF0852 /* customsounds.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = customsounds.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A2316E10B9CFAD700EF0852 /* demoships.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = demoships.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A2316E30B9CFAD700EF0852 /* equipment.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = equipment.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A2316E40B9CFAD700EF0852 /* hud-small.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = "hud-small.plist"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A2316E50B9CFAD700EF0852 /* hud.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = hud.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A2316E70B9CFAD700EF0852 /* keyconfig.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; languageSpecificationIdentifier = plist; path = keyconfig.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A2316E80B9CFAD700EF0852 /* logcontrol.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = logcontrol.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A2316E90B9CFAD700EF0852 /* missiontext.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = missiontext.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A2316EB0B9CFAD700EF0852 /* shipdata.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = shipdata.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A2316EC0B9CFAD700EF0852 /* shipyard.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; languageSpecificationIdentifier = plist; path = shipyard.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A2316ED0B9CFAD700EF0852 /* speech_pronunciation_guide.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = speech_pronunciation_guide.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A2317910B9D022400EF0852 /* buoyAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = buoyAI.plist; sourceTree = ""; }; - 1A2317920B9D022500EF0852 /* collectLootAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = collectLootAI.plist; sourceTree = ""; }; - 1A2317930B9D022500EF0852 /* dockingAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = dockingAI.plist; sourceTree = ""; }; - 1A2317940B9D022500EF0852 /* dumbAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = dumbAI.plist; sourceTree = ""; }; - 1A2317950B9D022500EF0852 /* enteringPirateAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = enteringPirateAI.plist; sourceTree = ""; }; - 1A2317960B9D022500EF0852 /* enteringTraderAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = enteringTraderAI.plist; sourceTree = ""; }; - 1A2317970B9D022500EF0852 /* escortAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = escortAI.plist; sourceTree = ""; }; - 1A2317980B9D022500EF0852 /* exitingTraderAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = exitingTraderAI.plist; sourceTree = ""; }; - 1A2317990B9D022500EF0852 /* fallingShuttleAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = fallingShuttleAI.plist; sourceTree = ""; }; - 1A23179A0B9D022500EF0852 /* fttAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = fttAI.plist; sourceTree = ""; }; - 1A23179B0B9D022500EF0852 /* gotoWaypointAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = gotoWaypointAI.plist; sourceTree = ""; }; - 1A23179C0B9D022500EF0852 /* hardMissileAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = hardMissileAI.plist; sourceTree = ""; }; - 1A23179D0B9D022500EF0852 /* homeAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = homeAI.plist; sourceTree = ""; }; - 1A23179E0B9D022500EF0852 /* interceptAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = interceptAI.plist; sourceTree = ""; }; - 1A23179F0B9D022500EF0852 /* minerAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = minerAI.plist; sourceTree = ""; }; - 1A2317A00B9D022500EF0852 /* missileAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = missileAI.plist; sourceTree = ""; }; - 1A2317A10B9D022500EF0852 /* nullAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = nullAI.plist; sourceTree = ""; }; - 1A2317A20B9D022500EF0852 /* pirateAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = pirateAI.plist; sourceTree = ""; }; - 1A2317A30B9D022500EF0852 /* planetPatrolAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = planetPatrolAI.plist; sourceTree = ""; }; - 1A2317A40B9D022500EF0852 /* policeInterceptAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = policeInterceptAI.plist; sourceTree = ""; }; - 1A2317A50B9D022500EF0852 /* receiveDockingAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = receiveDockingAI.plist; sourceTree = ""; }; - 1A2317A60B9D022500EF0852 /* risingShuttleAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = risingShuttleAI.plist; sourceTree = ""; }; - 1A2317A70B9D022500EF0852 /* rockHermitAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = rockHermitAI.plist; sourceTree = ""; }; - 1A2317A80B9D022500EF0852 /* route1patrolAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = route1patrolAI.plist; sourceTree = ""; }; - 1A2317A90B9D022500EF0852 /* route1traderAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = route1traderAI.plist; sourceTree = ""; }; - 1A2317AA0B9D022500EF0852 /* route2patrolAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = route2patrolAI.plist; sourceTree = ""; }; - 1A2317AB0B9D022500EF0852 /* route2sunskimAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = route2sunskimAI.plist; sourceTree = ""; }; - 1A2317AC0B9D022500EF0852 /* scavengerAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = scavengerAI.plist; sourceTree = ""; }; - 1A2317AE0B9D022500EF0852 /* stationAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = stationAI.plist; sourceTree = ""; }; - 1A2317AF0B9D022500EF0852 /* sunSkimExitAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = sunSkimExitAI.plist; sourceTree = ""; }; - 1A2317B00B9D022500EF0852 /* thargletAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = thargletAI.plist; sourceTree = ""; }; - 1A2317B10B9D022500EF0852 /* thargoidAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = thargoidAI.plist; sourceTree = ""; }; - 1A2317B20B9D022500EF0852 /* timebombAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = timebombAI.plist; sourceTree = ""; }; - 1A23181E0B9D026D00EF0852 /* adder_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = adder_redux.png; sourceTree = ""; }; - 1A23181F0B9D026D00EF0852 /* anaconda_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = anaconda_redux.png; sourceTree = ""; }; - 1A2318200B9D026D00EF0852 /* arcdetail.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = arcdetail.png; sourceTree = ""; }; - 1A2318220B9D026D00EF0852 /* asp_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = asp_redux.png; sourceTree = ""; }; - 1A2318230B9D026D00EF0852 /* asteroid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = asteroid.png; sourceTree = ""; }; - 1A2318240B9D026D00EF0852 /* back_metal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = back_metal.png; sourceTree = ""; }; - 1A2318250B9D026D00EF0852 /* barrel_metal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = barrel_metal.png; sourceTree = ""; }; - 1A2318290B9D026D00EF0852 /* boa2_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = boa2_redux.png; sourceTree = ""; }; - 1A23182C0B9D026D00EF0852 /* boa_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = boa_redux.png; sourceTree = ""; }; - 1A23182D0B9D026D00EF0852 /* bottom_metal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bottom_metal.png; sourceTree = ""; }; - 1A23182E0B9D026D00EF0852 /* cobra1_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = cobra1_redux.png; sourceTree = ""; }; - 1A23182F0B9D026D00EF0852 /* cobra1_redux1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = cobra1_redux1.png; sourceTree = ""; }; - 1A2318300B9D026D00EF0852 /* cobra1_redux2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = cobra1_redux2.png; sourceTree = ""; }; - 1A2318320B9D026D00EF0852 /* cobra3_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = cobra3_redux.png; sourceTree = ""; }; - 1A2318330B9D026D00EF0852 /* cobra3_redux1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = cobra3_redux1.png; sourceTree = ""; }; - 1A2318340B9D026D00EF0852 /* constrictor_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = constrictor_redux.png; sourceTree = ""; }; - 1A2318350B9D026D00EF0852 /* dark_metal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = dark_metal.png; sourceTree = ""; }; - 1A2318360B9D026D00EF0852 /* ferdelance_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ferdelance_redux.png; sourceTree = ""; }; - 1A2318380B9D026D00EF0852 /* front_metal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = front_metal.png; sourceTree = ""; }; - 1A23183A0B9D026D00EF0852 /* gecko_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = gecko_redux.png; sourceTree = ""; }; - 1A23183B0B9D026D00EF0852 /* krait_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = krait_redux.png; sourceTree = ""; }; - 1A23183C0B9D026D00EF0852 /* left_metal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = left_metal.png; sourceTree = ""; }; - 1A23183D0B9D026D00EF0852 /* mamba_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mamba_redux.png; sourceTree = ""; }; - 1A23183E0B9D026D00EF0852 /* mamba_redux1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mamba_redux1.png; sourceTree = ""; }; - 1A23183F0B9D026D00EF0852 /* metal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = metal.png; sourceTree = ""; }; - 1A2318400B9D026D00EF0852 /* missile.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = missile.png; sourceTree = ""; }; - 1A2318410B9D026D00EF0852 /* moray_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = moray_redux.png; sourceTree = ""; }; - 1A2318420B9D026D00EF0852 /* moray_redux1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = moray_redux1.png; sourceTree = ""; }; - 1A2318490B9D026D00EF0852 /* pod2_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pod2_redux.png; sourceTree = ""; }; - 1A23184A0B9D026D00EF0852 /* python_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = python_redux.png; sourceTree = ""; }; - 1A23184B0B9D026D00EF0852 /* python_redux1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = python_redux1.png; sourceTree = ""; }; - 1A23184C0B9D026D00EF0852 /* python_redux2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = python_redux2.png; sourceTree = ""; }; - 1A23184D0B9D026D00EF0852 /* qbomb.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = qbomb.png; sourceTree = ""; }; - 1A23184E0B9D026D00EF0852 /* right_metal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = right_metal.png; sourceTree = ""; }; - 1A23184F0B9D026D00EF0852 /* scarred_metal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = scarred_metal.png; sourceTree = ""; }; - 1A2318500B9D026D00EF0852 /* shuttle_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = shuttle_redux.png; sourceTree = ""; }; - 1A2318510B9D026D00EF0852 /* sidewinder_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sidewinder_redux.png; sourceTree = ""; }; - 1A2318530B9D026D00EF0852 /* target_metal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = target_metal.png; sourceTree = ""; }; - 1A2318540B9D026D00EF0852 /* thargoid_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thargoid_redux.png; sourceTree = ""; }; - 1A2318550B9D026D00EF0852 /* thargon_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thargon_redux.png; sourceTree = ""; }; - 1A2318560B9D026D00EF0852 /* top_metal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = top_metal.png; sourceTree = ""; }; - 1A2318570B9D026D00EF0852 /* transporter_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = transporter_redux.png; sourceTree = ""; }; - 1A2318580B9D026D00EF0852 /* transporter_redux1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = transporter_redux1.png; sourceTree = ""; }; - 1A2318590B9D026D00EF0852 /* trumblekit.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = trumblekit.png; sourceTree = ""; }; - 1A23185A0B9D026D00EF0852 /* viper_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = viper_redux.png; sourceTree = ""; }; - 1A23185B0B9D026D00EF0852 /* viperi_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = viperi_redux.png; sourceTree = ""; }; - 1A23185C0B9D026D00EF0852 /* worm_redux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = worm_redux.png; sourceTree = ""; }; - 1A23185D0B9D026D00EF0852 /* worm_redux1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = worm_redux1.png; sourceTree = ""; }; - 1A23185E0B9D026D00EF0852 /* wreck.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = wreck.png; sourceTree = ""; }; - 1A2318A60B9D02A900EF0852 /* adder_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = adder_redux.dat; sourceTree = ""; }; - 1A2318A70B9D02A900EF0852 /* alloy.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = alloy.dat; sourceTree = ""; }; - 1A2318A80B9D02A900EF0852 /* anaconda_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = anaconda_redux.dat; sourceTree = ""; }; - 1A2318A90B9D02A900EF0852 /* arcdetail.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = arcdetail.dat; sourceTree = ""; }; - 1A2318AA0B9D02A900EF0852 /* asp_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = asp_redux.dat; sourceTree = ""; }; - 1A2318AB0B9D02A900EF0852 /* asteroid.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = asteroid.dat; sourceTree = ""; }; - 1A2318AC0B9D02A900EF0852 /* asteroid1.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = asteroid1.dat; sourceTree = ""; }; - 1A2318AD0B9D02A900EF0852 /* barrel.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = barrel.dat; sourceTree = ""; }; - 1A2318AE0B9D02A900EF0852 /* boa2_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = boa2_redux.dat; sourceTree = ""; }; - 1A2318AF0B9D02A900EF0852 /* boa_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = boa_redux.dat; sourceTree = ""; }; - 1A2318B00B9D02A900EF0852 /* boulder.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = boulder.dat; sourceTree = ""; }; - 1A2318B10B9D02A900EF0852 /* boulder1.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = boulder1.dat; sourceTree = ""; }; - 1A2318B20B9D02A900EF0852 /* buoy.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = buoy.dat; sourceTree = ""; }; - 1A2318B30B9D02A900EF0852 /* cobra1_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cobra1_redux.dat; sourceTree = ""; }; - 1A2318B60B9D02A900EF0852 /* cobra3_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cobra3_redux.dat; sourceTree = ""; }; - 1A2318B80B9D02A900EF0852 /* constrictor_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = constrictor_redux.dat; sourceTree = ""; }; - 1A2318B90B9D02A900EF0852 /* dock-flat.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "dock-flat.dat"; sourceTree = ""; }; - 1A2318BA0B9D02A900EF0852 /* dock.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = dock.dat; sourceTree = ""; }; - 1A2318BB0B9D02A900EF0852 /* escpod_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = escpod_redux.dat; sourceTree = ""; }; - 1A2318BD0B9D02A900EF0852 /* ferdelance_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ferdelance_redux.dat; sourceTree = ""; }; - 1A2318BE0B9D02A900EF0852 /* gecko_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gecko_redux.dat; sourceTree = ""; }; - 1A2318C10B9D02A900EF0852 /* krait_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = krait_redux.dat; sourceTree = ""; }; - 1A2318C20B9D02A900EF0852 /* mamba_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mamba_redux.dat; sourceTree = ""; }; - 1A2318C40B9D02A900EF0852 /* missile.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = missile.dat; sourceTree = ""; }; - 1A2318C50B9D02A900EF0852 /* moray_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = moray_redux.dat; sourceTree = ""; }; - 1A2318C70B9D02A900EF0852 /* new-dodo.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "new-dodo.dat"; sourceTree = ""; }; - 1A2318C80B9D02A900EF0852 /* new-icos.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "new-icos.dat"; sourceTree = ""; }; - 1A2318C90B9D02A900EF0852 /* new-rock.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "new-rock.dat"; sourceTree = ""; }; - 1A2318CA0B9D02A900EF0852 /* new_coriolis.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = new_coriolis.dat; sourceTree = ""; }; - 1A2318CB0B9D02A900EF0852 /* python_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = python_redux.dat; sourceTree = ""; }; - 1A2318CE0B9D02AA00EF0852 /* qbomb.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qbomb.dat; sourceTree = ""; }; - 1A2318CF0B9D02AA00EF0852 /* ring.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ring.dat; sourceTree = ""; }; - 1A2318D00B9D02AA00EF0852 /* rock-box.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "rock-box.dat"; sourceTree = ""; }; - 1A2318D10B9D02AA00EF0852 /* rock-dock.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "rock-dock.dat"; sourceTree = ""; }; - 1A2318D20B9D02AA00EF0852 /* scarred_alloy.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = scarred_alloy.dat; sourceTree = ""; }; - 1A2318D30B9D02AA00EF0852 /* shuttle_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = shuttle_redux.dat; sourceTree = ""; }; - 1A2318D40B9D02AA00EF0852 /* sidewinder_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = sidewinder_redux.dat; sourceTree = ""; }; - 1A2318D50B9D02AA00EF0852 /* splinter.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = splinter.dat; sourceTree = ""; }; - 1A2318D60B9D02AA00EF0852 /* splinter1.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = splinter1.dat; sourceTree = ""; }; - 1A2318D70B9D02AA00EF0852 /* strut.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = strut.dat; sourceTree = ""; }; - 1A2318D80B9D02AA00EF0852 /* thargoid_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thargoid_redux.dat; sourceTree = ""; }; - 1A2318D90B9D02AA00EF0852 /* thargon_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thargon_redux.dat; sourceTree = ""; }; - 1A2318DA0B9D02AA00EF0852 /* transporter_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = transporter_redux.dat; sourceTree = ""; }; - 1A2318DC0B9D02AA00EF0852 /* viper_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = viper_redux.dat; sourceTree = ""; }; - 1A2318DD0B9D02AA00EF0852 /* viperi_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = viperi_redux.dat; sourceTree = ""; }; - 1A2318DE0B9D02AA00EF0852 /* worm_redux.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = worm_redux.dat; sourceTree = ""; }; - 1A2318E00B9D02AA00EF0852 /* wreck1.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = wreck1.dat; sourceTree = ""; }; - 1A2318E10B9D02AA00EF0852 /* wreck2.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = wreck2.dat; sourceTree = ""; }; - 1A2318E20B9D02AA00EF0852 /* wreck3.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = wreck3.dat; sourceTree = ""; }; - 1A2318E30B9D02AA00EF0852 /* wreck4.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = wreck4.dat; sourceTree = ""; }; - 1A2318E40B9D02AA00EF0852 /* wreck5.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = wreck5.dat; sourceTree = ""; }; - 1A2319740B9D02F900EF0852 /* BlueDanube.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = BlueDanube.ogg; sourceTree = ""; }; - 1A2319750B9D02F900EF0852 /* OoliteTheme.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = OoliteTheme.ogg; sourceTree = ""; }; - 1A2319920B9D031D00EF0852 /* afterburner1.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = afterburner1.ogg; sourceTree = ""; }; - 1A2319940B9D031D00EF0852 /* beep.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = beep.ogg; sourceTree = ""; }; - 1A2319950B9D031D00EF0852 /* bigbang.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = bigbang.ogg; sourceTree = ""; }; - 1A2319960B9D031D00EF0852 /* boop.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = boop.ogg; sourceTree = ""; }; - 1A2319970B9D031D00EF0852 /* breakpattern.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = breakpattern.ogg; sourceTree = ""; }; - 1A2319980B9D031D00EF0852 /* buy.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = buy.ogg; sourceTree = ""; }; - 1A2319990B9D031D00EF0852 /* ecm.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = ecm.ogg; sourceTree = ""; }; - 1A23199A0B9D031D00EF0852 /* guiclick.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = guiclick.ogg; sourceTree = ""; }; - 1A23199B0B9D031D00EF0852 /* hit.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = hit.ogg; sourceTree = ""; }; - 1A23199C0B9D031D00EF0852 /* hullbang.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = hullbang.ogg; sourceTree = ""; }; - 1A23199D0B9D031D00EF0852 /* laser.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = laser.ogg; sourceTree = ""; }; - 1A23199E0B9D031D00EF0852 /* laserhits.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = laserhits.ogg; sourceTree = ""; }; - 1A23199F0B9D031D00EF0852 /* missile.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = missile.ogg; sourceTree = ""; }; - 1A2319A00B9D031D00EF0852 /* scoop.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = scoop.ogg; sourceTree = ""; }; - 1A2319A10B9D031D00EF0852 /* sell.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = sell.ogg; sourceTree = ""; }; - 1A2319A20B9D031D00EF0852 /* trumble.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = trumble.ogg; sourceTree = ""; }; - 1A2319A30B9D031D00EF0852 /* trumblesqueal.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = trumblesqueal.ogg; sourceTree = ""; }; - 1A2319A40B9D031D00EF0852 /* warning.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = warning.ogg; sourceTree = ""; }; - 1A2319A50B9D031D00EF0852 /* witchabort.ogg */ = {isa = PBXFileReference; lastKnownFileType = file; path = witchabort.ogg; sourceTree = ""; }; - 1A231A160B9D8B1B00EF0852 /* OOCacheManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCacheManager.h; sourceTree = ""; }; - 1A231A170B9D8B1B00EF0852 /* OOCacheManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCacheManager.m; sourceTree = ""; }; - 1A26D0880BCF9CF70073F257 /* PlayerEntityLegacyScriptEngine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayerEntityLegacyScriptEngine.m; sourceTree = ""; }; - 1A26D0890BCF9CF70073F257 /* ShipEntityAI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShipEntityAI.m; sourceTree = ""; }; - 1A26D08A0BCF9CF70073F257 /* ShipEntityAI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShipEntityAI.h; sourceTree = ""; }; - 1A26D08B0BCF9CF70073F257 /* PlayerEntityScriptMethods.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayerEntityScriptMethods.m; sourceTree = ""; }; - 1A26D08C0BCF9CF70073F257 /* PlayerEntityLoadSave.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayerEntityLoadSave.m; sourceTree = ""; }; - 1A26D08D0BCF9CF70073F257 /* PlayerEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayerEntity.m; sourceTree = ""; }; - 1A26D08E0BCF9CF70073F257 /* PlayerEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayerEntity.h; sourceTree = ""; }; - 1A26D08F0BCF9CF70073F257 /* ShipEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShipEntity.m; sourceTree = ""; }; - 1A26D0900BCF9CF70073F257 /* ShipEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShipEntity.h; sourceTree = ""; }; - 1A26D0910BCF9CF70073F257 /* PlayerEntityScriptMethods.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayerEntityScriptMethods.h; sourceTree = ""; }; - 1A26D0920BCF9CF70073F257 /* SkyEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkyEntity.m; sourceTree = ""; }; - 1A26D0930BCF9CF70073F257 /* SkyEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkyEntity.h; sourceTree = ""; }; - 1A26D0940BCF9CF70073F257 /* OOBreakPatternEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOBreakPatternEntity.m; sourceTree = ""; }; - 1A26D0950BCF9CF70073F257 /* OOBreakPatternEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOBreakPatternEntity.h; sourceTree = ""; }; - 1A26D0980BCF9CF70073F257 /* PlayerEntityContracts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayerEntityContracts.h; sourceTree = ""; }; - 1A26D0990BCF9CF70073F257 /* PlanetEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlanetEntity.m; sourceTree = ""; }; - 1A26D09A0BCF9CF70073F257 /* PlanetEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlanetEntity.h; sourceTree = ""; }; - 1A26D09B0BCF9CF70073F257 /* PlayerEntityContracts.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayerEntityContracts.m; sourceTree = ""; }; - 1A26D09C0BCF9CF70073F257 /* PlayerEntityControls.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayerEntityControls.m; sourceTree = ""; }; - 1A26D09D0BCF9CF70073F257 /* Entity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Entity.h; sourceTree = ""; }; - 1A26D09E0BCF9CF70073F257 /* PlayerEntityStickMapper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayerEntityStickMapper.m; sourceTree = ""; }; - 1A26D09F0BCF9CF70073F257 /* PlayerEntityStickMapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayerEntityStickMapper.h; sourceTree = ""; }; - 1A26D0F10BCF9CF70073F257 /* PlayerEntityKeyMapper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayerEntityKeyMapper.m; sourceTree = ""; }; - 1A26D0F20BCF9CF70073F257 /* PlayerEntityKeyMapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayerEntityKeyMapper.h; sourceTree = ""; }; - 1A26D0A00BCF9CF70073F257 /* WormholeEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WormholeEntity.m; sourceTree = ""; }; - 1A26D0A10BCF9CF70073F257 /* WormholeEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WormholeEntity.h; sourceTree = ""; }; - 1A26D0A20BCF9CF70073F257 /* StationEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StationEntity.m; sourceTree = ""; }; - 1A26D0A30BCF9CF70073F257 /* StationEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StationEntity.h; sourceTree = ""; }; - 1A26D0A40BCF9CF70073F257 /* PlayerEntityControls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayerEntityControls.h; sourceTree = ""; }; - 1A26D0A50BCF9CF70073F257 /* PlayerEntitySound.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayerEntitySound.m; sourceTree = ""; }; - 1A26D0A60BCF9CF70073F257 /* PlayerEntitySound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayerEntitySound.h; sourceTree = ""; }; - 1A26D0A70BCF9CF70073F257 /* DustEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DustEntity.h; sourceTree = ""; }; - 1A26D0A80BCF9CF70073F257 /* Entity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Entity.m; sourceTree = ""; }; - 1A26D0A90BCF9CF80073F257 /* DustEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = DustEntity.m; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; - 1A26D0AA0BCF9CF80073F257 /* PlayerEntityLegacyScriptEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = PlayerEntityLegacyScriptEngine.h; sourceTree = ""; }; - 1A26D0AB0BCF9CF80073F257 /* PlayerEntityLoadSave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayerEntityLoadSave.h; sourceTree = ""; }; - 1A26D0D00BCF9D0D0073F257 /* OOShaderMaterial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOShaderMaterial.h; sourceTree = ""; }; - 1A26D0D10BCF9D0D0073F257 /* OOShaderMaterial.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOShaderMaterial.m; sourceTree = ""; }; - 1A26D0D20BCF9D0D0073F257 /* OOMaterial.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOMaterial.m; sourceTree = ""; }; - 1A26D0D30BCF9D0D0073F257 /* OOMaterial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOMaterial.h; sourceTree = ""; }; - 1A26D0D80BCF9D1E0073F257 /* OOShaderUniform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOShaderUniform.h; sourceTree = ""; }; - 1A26D0D90BCF9D1E0073F257 /* OOShaderProgram.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOShaderProgram.m; sourceTree = ""; }; - 1A26D0DA0BCF9D1E0073F257 /* OOShaderProgram.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOShaderProgram.h; sourceTree = ""; }; - 1A26D0DB0BCF9D1E0073F257 /* OOShaderUniform.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOShaderUniform.m; sourceTree = ""; }; - 1A26D0E00BCF9D3B0073F257 /* OOTexture.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOTexture.m; sourceTree = ""; }; - 1A26D0E10BCF9D3B0073F257 /* OOTexture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOTexture.h; sourceTree = ""; }; - 1A26D0E20BCF9D3B0073F257 /* OOPNGTextureLoader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPNGTextureLoader.m; sourceTree = ""; }; - 1A26D0E30BCF9D3B0073F257 /* OOTextureLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOTextureLoader.h; sourceTree = ""; }; - 1A26D0E40BCF9D3B0073F257 /* OOPNGTextureLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPNGTextureLoader.h; sourceTree = ""; }; - 1A26D0E50BCF9D3B0073F257 /* OOTextureLoader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOTextureLoader.m; sourceTree = ""; }; - 1A27DB380C4E349F00CB4CE8 /* OOOXPVerifierStageInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOOXPVerifierStageInternal.h; sourceTree = ""; }; - 1A27DB390C4E349F00CB4CE8 /* OOOXPVerifierStage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOOXPVerifierStage.h; sourceTree = ""; }; - 1A27DB3A0C4E349F00CB4CE8 /* OOOXPVerifierStage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOOXPVerifierStage.m; sourceTree = ""; }; - 1A27DB400C4E34B300CB4CE8 /* OOFileScannerVerifierStage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOFileScannerVerifierStage.h; sourceTree = ""; }; - 1A27DB410C4E34B300CB4CE8 /* OOFileScannerVerifierStage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOFileScannerVerifierStage.m; sourceTree = ""; }; - 1A28AA140D55438200BC0CE4 /* OOJSSound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSSound.h; sourceTree = ""; }; - 1A28AA150D55438200BC0CE4 /* OOJSSound.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSSound.m; sourceTree = ""; }; - 1A29967C0B9F064C002D2149 /* OOCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCache.h; sourceTree = ""; }; - 1A29967D0B9F064C002D2149 /* OOCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCache.m; sourceTree = ""; }; - 1A2A16660BD10B1200152975 /* OOSingleTextureMaterial.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOSingleTextureMaterial.m; sourceTree = ""; }; - 1A2A16670BD10B1200152975 /* OOSingleTextureMaterial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOSingleTextureMaterial.h; sourceTree = ""; }; - 1A2A17D40BD1587D00152975 /* OOCPUInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCPUInfo.h; sourceTree = ""; }; - 1A2A17D50BD1587D00152975 /* OOCPUInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCPUInfo.m; sourceTree = ""; }; - 1A2A1B050BD276A900152975 /* OOEntityWithDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOEntityWithDrawable.h; sourceTree = ""; }; - 1A2A1B060BD276A900152975 /* OOEntityWithDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOEntityWithDrawable.m; sourceTree = ""; }; - 1A2A1B120BD2774300152975 /* OODrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OODrawable.h; sourceTree = ""; }; - 1A2A1B130BD2774300152975 /* OODrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OODrawable.m; sourceTree = ""; }; - 1A2A1CA80BD2914F00152975 /* OOMesh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOMesh.h; sourceTree = ""; }; - 1A2A1CA90BD2914F00152975 /* OOMesh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOMesh.m; sourceTree = ""; }; - 1A2A1DEA0BD2A28E00152975 /* OOMacroOpenGL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOMacroOpenGL.h; sourceTree = ""; }; - 1A2A8C130BC65FFD001E00FB /* OOJSEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSEntity.h; sourceTree = ""; }; - 1A2A8C140BC65FFD001E00FB /* OOJSEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSEntity.m; sourceTree = ""; }; - 1A2A8D380BC6765F001E00FB /* EntityOOJavaScriptExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EntityOOJavaScriptExtensions.h; sourceTree = ""; }; - 1A2A8D390BC6765F001E00FB /* EntityOOJavaScriptExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EntityOOJavaScriptExtensions.m; sourceTree = ""; }; - 1A2A8E010BC67CCC001E00FB /* OOWeakReference.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOWeakReference.h; sourceTree = ""; }; - 1A2A8E020BC67CCC001E00FB /* OOWeakReference.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOWeakReference.m; sourceTree = ""; }; - 1A2A91500BC6BC66001E00FB /* OOJSQuaternion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSQuaternion.h; sourceTree = ""; }; - 1A2A91510BC6BC66001E00FB /* OOJSQuaternion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSQuaternion.m; sourceTree = ""; }; - 1A2DA2A40CB4CB5C00DE6823 /* OODebugTCPConsoleProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OODebugTCPConsoleProtocol.h; sourceTree = ""; }; - 1A2DA2A50CB4CB5C00DE6823 /* OODebugTCPConsoleClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OODebugTCPConsoleClient.m; sourceTree = ""; }; - 1A2DA2A60CB4CB5C00DE6823 /* OOTCPStreamDecoder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = OOTCPStreamDecoder.c; sourceTree = ""; }; - 1A2DA2A70CB4CB5C00DE6823 /* OODebugTCPConsoleClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OODebugTCPConsoleClient.h; sourceTree = ""; }; - 1A2DA2A80CB4CB5C00DE6823 /* OOTCPStreamDecoderAbstractionLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOTCPStreamDecoderAbstractionLayer.h; sourceTree = ""; }; - 1A2DA2A90CB4CB5C00DE6823 /* OOTCPStreamDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOTCPStreamDecoder.h; sourceTree = ""; }; - 1A2DA2AA0CB4CB5C00DE6823 /* OOTCPStreamDecoderAbstractionLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOTCPStreamDecoderAbstractionLayer.m; sourceTree = ""; }; - 1A2DA3490CB4D0D800DE6823 /* OOJSConsole.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSConsole.h; sourceTree = ""; }; - 1A2DA34A0CB4D0D800DE6823 /* OODebugMonitor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OODebugMonitor.h; sourceTree = ""; }; - 1A2DA34B0CB4D0D800DE6823 /* OOJSConsole.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSConsole.m; sourceTree = ""; }; - 1A2DA34C0CB4D0D800DE6823 /* OODebugMonitor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OODebugMonitor.m; sourceTree = ""; }; - 1A2DA3540CB4D10800DE6823 /* OODebuggerInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OODebuggerInterface.h; sourceTree = ""; }; - 1A2DA3EC0CB4E84900DE6823 /* OODebugSupport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OODebugSupport.m; sourceTree = ""; }; - 1A2DA3ED0CB4E84900DE6823 /* OODebugSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OODebugSupport.h; sourceTree = ""; }; - 1A2F63950C5CC737003872C8 /* demoshipsSchema.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = demoshipsSchema.plist; sourceTree = ""; }; - 1A2F63960C5CC737003872C8 /* hudSchema.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = hudSchema.plist; sourceTree = ""; }; - 1A2F63980C5CC737003872C8 /* shipdataEntrySchema.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = shipdataEntrySchema.plist; sourceTree = ""; }; - 1A2F63990C5CC737003872C8 /* shipyardSchema.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = shipyardSchema.plist; sourceTree = ""; }; - 1A3091F81637447300C16E8B /* OOOpenGLStates.tbl */ = {isa = PBXFileReference; lastKnownFileType = text; path = OOOpenGLStates.tbl; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; - 1A3159250F1B7B7E00328E4A /* OOAIStateMachineVerifierStage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOAIStateMachineVerifierStage.h; sourceTree = ""; }; - 1A3159260F1B7B7E00328E4A /* OOAIStateMachineVerifierStage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOAIStateMachineVerifierStage.m; sourceTree = ""; }; - 1A3491290BC25EAA00802DA7 /* world-scripts.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = "world-scripts.plist"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A3491AA0BC282DE00802DA7 /* ReleaseLockProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReleaseLockProxy.h; sourceTree = ""; }; - 1A3491AB0BC282DE00802DA7 /* ReleaseLockProxy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReleaseLockProxy.m; sourceTree = ""; }; - 1A35251112E1F89100244C9D /* OOEntityStatus.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OOEntityStatus.tbl; sourceTree = ""; }; - 1A35256012E1FC0100244C9D /* OOScanClass.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OOScanClass.tbl; sourceTree = ""; }; - 1A35256212E1FC0500244C9D /* OOBehaviour.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OOBehaviour.tbl; sourceTree = ""; }; - 1A35257012E1FFA900244C9D /* OOConstToJSString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOConstToJSString.h; sourceTree = ""; }; - 1A35257112E1FFA900244C9D /* OOConstToJSString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOConstToJSString.m; sourceTree = ""; }; - 1A3591690C1C375400E52220 /* oolite-nebula-1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-nebula-1.png"; sourceTree = ""; }; - 1A35916A0C1C375400E52220 /* oolite-star-1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-star-1.png"; sourceTree = ""; }; - 1A35916B0C1C375400E52220 /* oolite-nebula-3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-nebula-3.png"; sourceTree = ""; }; - 1A35916C0C1C375400E52220 /* oolite-nebula-2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-nebula-2.png"; sourceTree = ""; }; - 1A3591810C1C382700E52220 /* nebulatextures.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = nebulatextures.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A3591820C1C382700E52220 /* startextures.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = startextures.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A37D1ED1049B2E400BC8976 /* CHANGELOG.TXT */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = CHANGELOG.TXT; path = Doc/CHANGELOG.TXT; sourceTree = ""; }; - 1A38B4AA0B988532001ED4A0 /* OOLogging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOLogging.h; sourceTree = ""; }; - 1A38B4AB0B988532001ED4A0 /* OOLogging.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOLogging.m; sourceTree = ""; }; - 1A38E9E11603C7A500EE19F1 /* OOJSInterfaceDefinition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSInterfaceDefinition.h; sourceTree = ""; }; - 1A38E9E21603C7A500EE19F1 /* OOJSInterfaceDefinition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSInterfaceDefinition.m; sourceTree = ""; }; - 1A38E9E51603C7A500EE19F1 /* OOJSGuiScreenKeyDefinition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSGuiScreenKeyDefinition.h; sourceTree = ""; }; - 1A38E9E61603C7A500EE19F1 /* OOJSGuiScreenKeyDefinition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSGuiScreenKeyDefinition.m; sourceTree = ""; }; - 1A38E9E51603C7ED00EE19F1 /* oolite-contracts-parcels.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-contracts-parcels.js"; sourceTree = ""; }; - 1A3A04610BC547DC00B5E2D9 /* OOTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOTypes.h; sourceTree = ""; }; - 1A3ACFE90C5FF33A00EC50A7 /* OOJSShip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSShip.h; sourceTree = ""; }; - 1A3ACFEA0C5FF33A00EC50A7 /* OOJSShip.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSShip.m; sourceTree = ""; }; - 1A3AFF1D0BC4462200B5E2D9 /* OOJSVector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSVector.h; sourceTree = ""; }; - 1A3AFF1E0BC4462200B5E2D9 /* OOJSVector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSVector.m; sourceTree = ""; }; - 1A3BA257106555D100C5C6F3 /* NSNumberOOExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSNumberOOExtensions.h; sourceTree = ""; }; - 1A3BA258106555D100C5C6F3 /* NSNumberOOExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSNumberOOExtensions.m; sourceTree = ""; }; - 1A3C67F30F1C90BF0000D45B /* OOLegacyScriptWhitelist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOLegacyScriptWhitelist.h; sourceTree = ""; }; - 1A3C67F40F1C90BF0000D45B /* OOLegacyScriptWhitelist.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOLegacyScriptWhitelist.m; sourceTree = ""; }; - 1A3D03131173536C005BF5E6 /* OOMultiTextureMaterial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOMultiTextureMaterial.h; sourceTree = ""; }; - 1A3D03141173536C005BF5E6 /* OOMultiTextureMaterial.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOMultiTextureMaterial.m; sourceTree = ""; }; - 1A3D034811736EDA005BF5E6 /* OOMaterialConvenienceCreators.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOMaterialConvenienceCreators.h; sourceTree = ""; }; - 1A3D034911736EDA005BF5E6 /* OOMaterialConvenienceCreators.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOMaterialConvenienceCreators.m; sourceTree = ""; }; - 1A3D68FB11C7F4D400651B08 /* CHECKLIST.TXT */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = CHECKLIST.TXT; path = Doc/CHECKLIST.TXT; sourceTree = ""; }; - 1A3E018E11C574AC000FF226 /* Oolite-importer.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "Oolite-importer.xcodeproj"; path = "Mac-specific/Oolite-importer/Oolite-importer.xcodeproj"; sourceTree = ""; }; - 1A401F8615E7AF7B004CDF95 /* OOPrimaryWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPrimaryWindow.h; sourceTree = ""; }; - 1A401F8715E7AF7B004CDF95 /* OOPrimaryWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPrimaryWindow.m; sourceTree = ""; }; - 1A43234A0BCFC9BB00F65914 /* OOOpenGLExtensionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOOpenGLExtensionManager.h; sourceTree = ""; }; - 1A43234B0BCFC9BB00F65914 /* OOOpenGLExtensionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOOpenGLExtensionManager.m; sourceTree = ""; }; - 1A43A0CA0CB91D2C00D0E239 /* OOJSPlanet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSPlanet.h; sourceTree = ""; }; - 1A43A0CB0CB91D2C00D0E239 /* OOJSPlanet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSPlanet.m; sourceTree = ""; }; - 1A43A1840CB9243B00D0E239 /* OOEntityFilterPredicate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOEntityFilterPredicate.h; sourceTree = ""; }; - 1A43A1850CB9243B00D0E239 /* OOEntityFilterPredicate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOEntityFilterPredicate.m; sourceTree = ""; }; - 1A43F28A105170A8003FDE8B /* OONSOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OONSOperation.h; sourceTree = ""; }; - 1A4501E10DBF699A00815C04 /* descriptions.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = descriptions.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A45BCC9104AB46900A89324 /* oolite-targets.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "oolite-targets.xcconfig"; path = "src/Cocoa/oolite-targets.xcconfig"; sourceTree = ""; }; - 1A472916096B5454000E78D8 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = /System/Library/Frameworks/CoreAudio.framework; sourceTree = ""; }; - 1A47291F096B5468000E78D8 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = /System/Library/Frameworks/AudioToolbox.framework; sourceTree = ""; }; - 1A472920096B5468000E78D8 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = /System/Library/Frameworks/AudioUnit.framework; sourceTree = ""; }; - 1A4DF25912FDC4420027F43D /* OORingEffectEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OORingEffectEntity.h; sourceTree = ""; }; - 1A4DF25A12FDC4420027F43D /* OORingEffectEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OORingEffectEntity.m; sourceTree = ""; }; - 1A4DF35112FDF0410027F43D /* OOParticleSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOParticleSystem.h; sourceTree = ""; }; - 1A4DF35212FDF0410027F43D /* OOParticleSystem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOParticleSystem.m; sourceTree = ""; }; - 1A4F917019CEDD1900E18B65 /* OODebugStandards.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OODebugStandards.m; sourceTree = ""; }; - 1A4F917719CEDD7900E18B65 /* OOCommodityMarket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCommodityMarket.m; sourceTree = ""; }; - 1A4F917919CEDDB200E18B65 /* OOCommodityMarket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCommodityMarket.h; sourceTree = ""; }; - 1A4F917B19CEDDC600E18B65 /* OOCommodities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCommodities.h; sourceTree = ""; }; - 1A4F917C19CEDDC600E18B65 /* OOCommodities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCommodities.m; sourceTree = ""; }; - 1A4F917F19CEDDFB00E18B65 /* OODebugStandards.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OODebugStandards.h; sourceTree = ""; }; - 1A4F918319CEDE5300E18B65 /* trade-goods.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "trade-goods.plist"; sourceTree = ""; }; - 1A4FB3330C8DC86800DC8E1F /* OOJSOolite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSOolite.h; sourceTree = ""; }; - 1A4FB3340C8DC86800DC8E1F /* OOJSOolite.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSOolite.m; sourceTree = ""; }; - 1A504D9014DC964A003E5363 /* Oolite.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Oolite.xib; path = src/Cocoa/Oolite.xib; sourceTree = SOURCE_ROOT; }; - 1A5218D80D72EC21000865E9 /* OOSpatialReference.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOSpatialReference.h; sourceTree = ""; }; - 1A5218DD0D72ECE5000865E9 /* OOSpatialReference.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOSpatialReference.m; sourceTree = ""; }; - 1A54115914B8913E00B8A4BE /* OOMacJoystickManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOMacJoystickManager.h; sourceTree = ""; }; - 1A54115A14B8913E00B8A4BE /* OOMacJoystickManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOMacJoystickManager.m; sourceTree = ""; }; - 1A54125014B892A200B8A4BE /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = ""; }; - 1A54AB510E3E17A0001EB817 /* OOJSPlayerShip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSPlayerShip.h; sourceTree = ""; }; - 1A54AB520E3E17A0001EB817 /* OOJSPlayerShip.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSPlayerShip.m; sourceTree = ""; }; - 1A572FB80D84B640003D4A26 /* oolite-nova-mission.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-nova-mission.js"; sourceTree = ""; }; - 1A572FB90D84B640003D4A26 /* oolite-thargoid-plans-mission.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-thargoid-plans-mission.js"; sourceTree = ""; }; - 1A572FBA0D84B640003D4A26 /* oolite-trumbles-mission.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-trumbles-mission.js"; sourceTree = ""; }; - 1A572FBB0D84B640003D4A26 /* oolite-default-ship-script.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-default-ship-script.js"; sourceTree = ""; }; - 1A572FBC0D84B640003D4A26 /* oolite-cloaking-device-mission.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-cloaking-device-mission.js"; sourceTree = ""; }; - 1A572FBD0D84B640003D4A26 /* oolite-constrictor.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-constrictor.js"; sourceTree = ""; }; - 1A572FBE0D84B640003D4A26 /* oolite-constrictor-hunt-mission.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-constrictor-hunt-mission.js"; sourceTree = ""; }; - 1A572FBF0D84B640003D4A26 /* oolite-cloaking-device-target-ship.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-cloaking-device-target-ship.js"; sourceTree = ""; }; - 1A572FC00D84B640003D4A26 /* oolite-cloaking-device-pod.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-cloaking-device-pod.js"; sourceTree = ""; }; - 1A572FC10D84B640003D4A26 /* oolite-global-prefix.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-global-prefix.js"; sourceTree = ""; }; - 1A572FC20D84B640003D4A26 /* oolite-thargoid-warship.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-thargoid-warship.js"; sourceTree = ""; }; - 1A572FE40D84B6A3003D4A26 /* oolite-constrictor-AI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = "oolite-constrictor-AI.plist"; sourceTree = ""; }; - 1A59FF4117CA26D6000BF0E0 /* oolite-populator.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-populator.js"; sourceTree = ""; }; - 1A5AA3220C0098AF0029C78A /* OOOpenGL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = OOOpenGL.m; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; - 1A5ABE6A15FBC833006C97DC /* oolite-default-effect-script.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-default-effect-script.js"; sourceTree = ""; }; - 1A5D58821825241800C779AE /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ioapi.c; sourceTree = ""; usesTabs = 0; }; - 1A5D58831825241800C779AE /* ioapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ioapi.h; sourceTree = ""; }; - 1A5D58841825241800C779AE /* MiniZip64_info.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MiniZip64_info.txt; sourceTree = ""; }; - 1A5D58851825241800C779AE /* unzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unzip.c; sourceTree = ""; }; - 1A5D58861825241800C779AE /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unzip.h; sourceTree = ""; }; - 1A5D5891182525DE00C779AE /* NSDataOOExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSDataOOExtensions.h; sourceTree = ""; }; - 1A5D5892182525DE00C779AE /* NSDataOOExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSDataOOExtensions.m; sourceTree = ""; }; - 1A5DB1E80BBD8F0000D57389 /* OOConstToString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOConstToString.h; sourceTree = ""; }; - 1A5DB1E90BBD8F0000D57389 /* OOConstToString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOConstToString.m; sourceTree = ""; }; - 1A5DBA9A0BC000DC00D57389 /* OOJavaScriptEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJavaScriptEngine.h; sourceTree = ""; }; - 1A5DBA9B0BC000DC00D57389 /* OOJavaScriptEngine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJavaScriptEngine.m; sourceTree = ""; }; - 1A5DBA9C0BC000DC00D57389 /* OOJSScript.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSScript.h; sourceTree = ""; }; - 1A5DBA9D0BC000DC00D57389 /* OOJSScript.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSScript.m; sourceTree = ""; }; - 1A5DBA9E0BC000DC00D57389 /* OOPListScript.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPListScript.h; sourceTree = ""; }; - 1A5DBA9F0BC000DC00D57389 /* OOPListScript.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPListScript.m; sourceTree = ""; }; - 1A5DBAA10BC000DC00D57389 /* OOScript.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOScript.h; sourceTree = ""; }; - 1A5DBAA20BC000DC00D57389 /* OOScript.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOScript.m; sourceTree = ""; }; - 1A5DBD560BC17F0900D57389 /* NSStringOOExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSStringOOExtensions.h; sourceTree = ""; }; - 1A5DBD570BC17F0900D57389 /* NSStringOOExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSStringOOExtensions.m; sourceTree = ""; }; - 1A5E462D0C32DACE008104B4 /* OOShaderUniformMethodType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOShaderUniformMethodType.m; sourceTree = ""; }; - 1A5E462E0C32DACE008104B4 /* OOShaderUniformMethodType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOShaderUniformMethodType.h; sourceTree = ""; }; - 1A60AFB50D56093B0070510D /* OOMusicController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOMusicController.h; sourceTree = ""; }; - 1A60AFB60D56093B0070510D /* OOMusicController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOMusicController.m; sourceTree = ""; }; - 1A62F0FB0E26A2A000897506 /* OOEquipmentType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOEquipmentType.m; sourceTree = ""; }; - 1A62F0FC0E26A2A000897506 /* OOEquipmentType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOEquipmentType.h; sourceTree = ""; }; - 1A644E211052A9FD00833636 /* traderInterceptAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = traderInterceptAI.plist; sourceTree = ""; }; - 1A65150D0CCC9E220054D01B /* oolite-standard-vertex.vertex */ = {isa = PBXFileReference; explicitFileType = sourcecode.glsl; fileEncoding = 4; path = "oolite-standard-vertex.vertex"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.glsl; }; - 1A65150E0CCC9E220054D01B /* oolite-default-shader.fragment */ = {isa = PBXFileReference; explicitFileType = sourcecode.glsl; fileEncoding = 4; path = "oolite-default-shader.fragment"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.glsl; }; - 1A69FFEC18A64C320062EAC8 /* PlayerEntityStickProfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayerEntityStickProfile.h; sourceTree = ""; }; - 1A69FFED18A64C320062EAC8 /* PlayerEntityStickProfile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayerEntityStickProfile.m; sourceTree = ""; }; - 1A69FFF518A64CF70062EAC8 /* OOJoystickProfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJoystickProfile.h; sourceTree = ""; }; - 1A69FFF618A64CF70062EAC8 /* OOJoystickProfile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJoystickProfile.m; sourceTree = ""; }; - 1A6A3A7E1135E0F200697AF8 /* oolite-snapshot.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "oolite-snapshot.xcconfig"; path = "src/Cocoa/oolite-snapshot.xcconfig"; sourceTree = ""; }; - 1A6A963210AEEC5D0065D0F3 /* AIGraphViz.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AIGraphViz.m; sourceTree = ""; }; - 1A6B1EEE0C9AA5C6000717CF /* OOScriptTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOScriptTimer.h; sourceTree = ""; }; - 1A6B1EEF0C9AA5C6000717CF /* OOScriptTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOScriptTimer.m; sourceTree = ""; }; - 1A6B1F340C9AAA60000717CF /* OOPriorityQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPriorityQueue.m; sourceTree = ""; }; - 1A6B1F350C9AAA60000717CF /* OOPriorityQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPriorityQueue.h; sourceTree = ""; }; - 1A6B228B0C9B40D4000717CF /* OOJSTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSTimer.h; sourceTree = ""; }; - 1A6B228C0C9B40D4000717CF /* OOJSTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSTimer.m; sourceTree = ""; }; - 1A6B25EC0C9C2745000717CF /* OOJSClock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSClock.h; sourceTree = ""; }; - 1A6B25ED0C9C2746000717CF /* OOJSClock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSClock.m; sourceTree = ""; }; - 1A6C6D5C1652E038005D1D3B /* oolite-particle-dust.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-particle-dust.png"; sourceTree = ""; }; - 1A6DD1210C57B5BC00A892F4 /* OOPListSchemaVerifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPListSchemaVerifier.h; sourceTree = ""; }; - 1A6DD1220C57B5BC00A892F4 /* OOPListSchemaVerifier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPListSchemaVerifier.m; sourceTree = ""; }; - 1A6F665114DF323900695C11 /* OODefaultShaderSynthesizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OODefaultShaderSynthesizer.h; sourceTree = ""; }; - 1A6F665214DF323900695C11 /* OODefaultShaderSynthesizer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OODefaultShaderSynthesizer.m; sourceTree = ""; }; - 1A7038A112BB9F5A0015CCDC /* dummy.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dummy.cpp; sourceTree = ""; }; - 1A71D8A80E5F17410088C456 /* OOSoundSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOSoundSource.m; sourceTree = ""; }; - 1A71D8A90E5F17410088C456 /* OOSoundSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOSoundSource.h; sourceTree = ""; }; - 1A71E8780BCE8EB100CD5C13 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = /usr/lib/libz.dylib; sourceTree = ""; }; - 1A72F86315E002E100281337 /* OOMouseInteractionMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOMouseInteractionMode.h; sourceTree = ""; }; - 1A72F86415E002E100281337 /* OOMouseInteractionMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOMouseInteractionMode.m; sourceTree = ""; }; - 1A72F86715E14F1100281337 /* OOMacSystemStandardFullScreenController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOMacSystemStandardFullScreenController.h; sourceTree = ""; }; - 1A72F86815E14F1100281337 /* OOMacSystemStandardFullScreenController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOMacSystemStandardFullScreenController.m; sourceTree = ""; }; - 1A72F86C15E5655C00281337 /* OOVisualEffectEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOVisualEffectEntity.h; sourceTree = ""; }; - 1A72F86D15E5655D00281337 /* OOVisualEffectEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOVisualEffectEntity.m; sourceTree = ""; }; - 1A72F87015E5658E00281337 /* OOJSVisualEffect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSVisualEffect.h; sourceTree = ""; }; - 1A72F87115E5658E00281337 /* OOJSVisualEffect.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSVisualEffect.m; sourceTree = ""; }; - 1A736BD10C61E9370097AC37 /* OOJSPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSPlayer.h; sourceTree = ""; }; - 1A736BD20C61E9370097AC37 /* OOJSPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSPlayer.m; sourceTree = ""; }; - 1A736C7D0C61FD220097AC37 /* OOJSCall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSCall.h; sourceTree = ""; }; - 1A736C7E0C61FD220097AC37 /* OOJSCall.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSCall.m; sourceTree = ""; }; - 1A73712B0C623DAE0097AC37 /* OOJSStation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSStation.h; sourceTree = ""; }; - 1A73712C0C623DAE0097AC37 /* OOJSStation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSStation.m; sourceTree = ""; }; - 1A7376BC0C64AE330097AC37 /* OOJSSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSSystem.h; sourceTree = ""; }; - 1A7376BD0C64AE330097AC37 /* OOJSSystem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSSystem.m; sourceTree = ""; }; - 1A78B5D412D74CF900D42EE7 /* libpng.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libpng.xcodeproj; path = "deps/Cocoa-deps/libpng/libpng.xcodeproj"; sourceTree = ""; }; - 1A7B967E0E620C9E00322821 /* OOSoundInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOSoundInternal.h; sourceTree = ""; }; - 1A7BA80B0D84231A003C6CA3 /* ShipEntityScriptMethods.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShipEntityScriptMethods.h; sourceTree = ""; }; - 1A7BA80C0D84231A003C6CA3 /* ShipEntityScriptMethods.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShipEntityScriptMethods.m; sourceTree = ""; }; - 1A7C27C814FA709500F2D2A8 /* shader-uniform-bindings.plist */ = {isa = PBXFileReference; explicitFileType = text; path = "shader-uniform-bindings.plist"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A7C75980CC39D11005D0AA2 /* OOJSSun.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSSun.m; sourceTree = ""; }; - 1A7C75990CC39D11005D0AA2 /* OOJSSun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSSun.h; sourceTree = ""; }; - 1A7CBF6D10937DD6005B7797 /* OOPointMaths.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPointMaths.h; sourceTree = ""; }; - 1A7D3A160C4F6162008EDC33 /* OOCheckRequiresPListVerifierStage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCheckRequiresPListVerifierStage.h; sourceTree = ""; }; - 1A7D3A170C4F6162008EDC33 /* OOCheckRequiresPListVerifierStage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCheckRequiresPListVerifierStage.m; sourceTree = ""; }; - 1A7D3B990C4F7843008EDC33 /* OOCheckDemoShipsPListVerifierStage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCheckDemoShipsPListVerifierStage.h; sourceTree = ""; }; - 1A7D3B9A0C4F7843008EDC33 /* OOCheckDemoShipsPListVerifierStage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCheckDemoShipsPListVerifierStage.m; sourceTree = ""; }; - 1A7D3C470C4F818C008EDC33 /* OOCheckEquipmentPListVerifierStage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCheckEquipmentPListVerifierStage.h; sourceTree = ""; }; - 1A7D3C480C4F818C008EDC33 /* OOCheckEquipmentPListVerifierStage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCheckEquipmentPListVerifierStage.m; sourceTree = ""; }; - 1A7D3D290C4F8D01008EDC33 /* OOTextureVerifierStage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOTextureVerifierStage.h; sourceTree = ""; }; - 1A7D3D2A0C4F8D02008EDC33 /* OOTextureVerifierStage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOTextureVerifierStage.m; sourceTree = ""; }; - 1A7D41840C516B90008EDC33 /* OOModelVerifierStage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOModelVerifierStage.m; sourceTree = ""; }; - 1A7D41850C516B90008EDC33 /* OOModelVerifierStage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOModelVerifierStage.h; sourceTree = ""; }; - 1A7D41E00C516E9E008EDC33 /* OOCheckShipDataPListVerifierStage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCheckShipDataPListVerifierStage.h; sourceTree = ""; }; - 1A7D41E10C516E9E008EDC33 /* OOCheckShipDataPListVerifierStage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCheckShipDataPListVerifierStage.m; sourceTree = ""; }; - 1A7D83380C40147700E4A5F5 /* OOAsyncQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOAsyncQueue.h; sourceTree = ""; }; - 1A7D83390C40147700E4A5F5 /* OOAsyncQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOAsyncQueue.m; sourceTree = ""; }; - 1A7E317B113ED37C009AAB6D /* EntityShaderBindings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EntityShaderBindings.m; sourceTree = ""; }; - 1A7E3187113ED496009AAB6D /* ProxyPlayerEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProxyPlayerEntity.h; sourceTree = ""; }; - 1A7E3188113ED496009AAB6D /* ProxyPlayerEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProxyPlayerEntity.m; sourceTree = ""; }; - 1A7E3A07180AD04000576095 /* oolite-assassinAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-assassinAI.js"; sourceTree = ""; }; - 1A7E3A08180AD04000576095 /* oolite-bountyHunterAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-bountyHunterAI.js"; sourceTree = ""; }; - 1A7E3A09180AD04000576095 /* oolite-bountyHunterLeaderAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-bountyHunterLeaderAI.js"; sourceTree = ""; }; - 1A7E3A0A180AD04000576095 /* oolite-constrictorAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-constrictorAI.js"; sourceTree = ""; }; - 1A7E3A0B180AD04000576095 /* oolite-defenseShipAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-defenseShipAI.js"; sourceTree = ""; }; - 1A7E3A0C180AD04000576095 /* oolite-escortAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-escortAI.js"; sourceTree = ""; }; - 1A7E3A0D180AD04100576095 /* oolite-missileAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-missileAI.js"; sourceTree = ""; }; - 1A7E3A0E180AD04100576095 /* oolite-nullAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-nullAI.js"; sourceTree = ""; }; - 1A7E3A0F180AD04100576095 /* oolite-pirateAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-pirateAI.js"; sourceTree = ""; }; - 1A7E3A10180AD04100576095 /* oolite-pirateFighterAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-pirateFighterAI.js"; sourceTree = ""; }; - 1A7E3A11180AD04100576095 /* oolite-pirateFreighterAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-pirateFreighterAI.js"; sourceTree = ""; }; - 1A7E3A12180AD04100576095 /* oolite-pirateInterceptorAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-pirateInterceptorAI.js"; sourceTree = ""; }; - 1A7E3A13180AD04100576095 /* oolite-policeAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-policeAI.js"; sourceTree = ""; }; - 1A7E3A14180AD04100576095 /* oolite-qbombAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-qbombAI.js"; sourceTree = ""; }; - 1A7E3A15180AD04100576095 /* oolite-rockHermitAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-rockHermitAI.js"; sourceTree = ""; }; - 1A7E3A16180AD04100576095 /* oolite-scavengerAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-scavengerAI.js"; sourceTree = ""; }; - 1A7E3A17180AD04100576095 /* oolite-shuttleAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-shuttleAI.js"; sourceTree = ""; }; - 1A7E3A18180AD04100576095 /* oolite-stationAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-stationAI.js"; sourceTree = ""; }; - 1A7E3A19180AD04100576095 /* oolite-thargletAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-thargletAI.js"; sourceTree = ""; }; - 1A7E3A1A180AD04100576095 /* oolite-thargoidAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-thargoidAI.js"; sourceTree = ""; }; - 1A7E3A1B180AD04100576095 /* oolite-traderAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-traderAI.js"; sourceTree = ""; }; - 1A7E3A1C180AD04100576095 /* oolite-traderOpportunistAI.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-traderOpportunistAI.js"; sourceTree = ""; }; - 1A7E3A33180AD08F00576095 /* oolite-particle-cloud.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-particle-cloud.png"; sourceTree = ""; }; - 1A7E3A34180AD08F00576095 /* oolite-particle-cloud2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-particle-cloud2.png"; sourceTree = ""; }; - 1A7E3A37180AD0DE00576095 /* oolite-priorityai.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-priorityai.js"; sourceTree = ""; }; - 1A817C16106D123F00AA2F97 /* oolite-particle-blur.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-particle-blur.png"; sourceTree = ""; }; - 1A817CFA106D232100AA2F97 /* OOPlasmaShotEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPlasmaShotEntity.h; sourceTree = ""; }; - 1A817CFB106D232100AA2F97 /* OOPlasmaShotEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPlasmaShotEntity.m; sourceTree = ""; }; - 1A817D9E106D3FF000AA2F97 /* OOPlasmaBurstEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPlasmaBurstEntity.h; sourceTree = ""; }; - 1A817D9F106D3FF000AA2F97 /* OOPlasmaBurstEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPlasmaBurstEntity.m; sourceTree = ""; }; - 1A817DBE106D441200AA2F97 /* oolite-particle-flash.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-particle-flash.png"; sourceTree = ""; }; - 1A817DC1106D443B00AA2F97 /* OOFlashEffectEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOFlashEffectEntity.h; sourceTree = ""; }; - 1A817DC2106D443B00AA2F97 /* OOFlashEffectEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOFlashEffectEntity.m; sourceTree = ""; }; - 1A846BA90D79F9570081280D /* oolite-version.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "oolite-version.xcconfig"; path = "src/Cocoa/oolite-version.xcconfig"; sourceTree = ""; }; - 1A85AD0612EDCAC7000E1FCD /* OOJSPropID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSPropID.h; sourceTree = ""; }; - 1A85AE4D12EE0ED9000E1FCD /* OOViewID.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OOViewID.tbl; sourceTree = ""; }; - 1A86D4EB1825852C00000F67 /* role-categories.plist */ = {isa = PBXFileReference; explicitFileType = text; path = "role-categories.plist"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.plist; }; - 1A87063D1172029F003FDD2A /* OODebugFlags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OODebugFlags.h; sourceTree = ""; }; - 1A89CBA1182533BE00A4E455 /* oolite_adder.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_adder.dat; sourceTree = ""; }; - 1A89CBA2182533BE00A4E455 /* oolite_anaconda.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_anaconda.dat; sourceTree = ""; }; - 1A89CBA3182533BE00A4E455 /* oolite_asp.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_asp.dat; sourceTree = ""; }; - 1A89CBA4182533BE00A4E455 /* oolite_barrel.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_barrel.dat; sourceTree = ""; }; - 1A89CBA5182533BE00A4E455 /* oolite_barrel2.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_barrel2.dat; sourceTree = ""; }; - 1A89CBA6182533BE00A4E455 /* oolite_boa-mk2.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = "oolite_boa-mk2.dat"; sourceTree = ""; }; - 1A89CBA7182533BE00A4E455 /* oolite_boa.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_boa.dat; sourceTree = ""; }; - 1A89CBA8182533BE00A4E455 /* oolite_cobra3.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_cobra3.dat; sourceTree = ""; }; - 1A89CBA9182533BE00A4E455 /* oolite_cobramk1.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_cobramk1.dat; sourceTree = ""; }; - 1A89CBAA182533BE00A4E455 /* oolite_constrictor.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_constrictor.dat; sourceTree = ""; }; - 1A89CBAB182533BE00A4E455 /* oolite_coriolis_dock.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_coriolis_dock.dat; sourceTree = ""; }; - 1A89CBAC182533BE00A4E455 /* oolite_coriolis_faceplate.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_coriolis_faceplate.dat; sourceTree = ""; }; - 1A89CBAD182533BE00A4E455 /* oolite_coriolis_tris.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_coriolis_tris.dat; sourceTree = ""; }; - 1A89CBAE182533BE00A4E455 /* oolite_coriolis.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_coriolis.dat; sourceTree = ""; }; - 1A89CBAF182533BE00A4E455 /* oolite_dodo_dock.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_dodo_dock.dat; sourceTree = ""; }; - 1A89CBB0182533BE00A4E455 /* oolite_dodo_faceplate.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_dodo_faceplate.dat; sourceTree = ""; }; - 1A89CBB1182533BE00A4E455 /* oolite_dodo.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_dodo.dat; sourceTree = ""; }; - 1A89CBB2182533BE00A4E455 /* oolite_escape_capsule.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_escape_capsule.dat; sourceTree = ""; }; - 1A89CBB3182533BE00A4E455 /* oolite_ferdelance.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_ferdelance.dat; sourceTree = ""; }; - 1A89CBB4182533BE00A4E455 /* oolite_gecko.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_gecko.dat; sourceTree = ""; }; - 1A89CBB5182533BE00A4E455 /* oolite_ico_dock.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_ico_dock.dat; sourceTree = ""; }; - 1A89CBB6182533BE00A4E455 /* oolite_ico_hull.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_ico_hull.dat; sourceTree = ""; }; - 1A89CBB7182533BE00A4E455 /* oolite_ico.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_ico.dat; sourceTree = ""; }; - 1A89CBB8182533BE00A4E455 /* oolite_krait.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_krait.dat; sourceTree = ""; }; - 1A89CBB9182533BE00A4E455 /* oolite_mamba.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_mamba.dat; sourceTree = ""; }; - 1A89CBBA182533BE00A4E455 /* oolite_missile_hardhead.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_missile_hardhead.dat; sourceTree = ""; }; - 1A89CBBB182533BE00A4E455 /* oolite_missile.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_missile.dat; sourceTree = ""; }; - 1A89CBBC182533BE00A4E455 /* oolite_moray.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_moray.dat; sourceTree = ""; }; - 1A89CBBD182533BE00A4E455 /* oolite_python_trader.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_python_trader.dat; sourceTree = ""; }; - 1A89CBBE182533BE00A4E455 /* oolite_python.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_python.dat; sourceTree = ""; }; - 1A89CBBF182533BE00A4E455 /* oolite_rock_hermit_dock.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_rock_hermit_dock.dat; sourceTree = ""; }; - 1A89CBC0182533BE00A4E455 /* oolite_rock_hermit_pipes.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_rock_hermit_pipes.dat; sourceTree = ""; }; - 1A89CBC1182533BE00A4E455 /* oolite_rock_hermit_rock.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_rock_hermit_rock.dat; sourceTree = ""; }; - 1A89CBC2182533BE00A4E455 /* oolite_rock_hermit_tunnel_extras.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_rock_hermit_tunnel_extras.dat; sourceTree = ""; }; - 1A89CBC3182533BE00A4E455 /* oolite_rock_hermit.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_rock_hermit.dat; sourceTree = ""; }; - 1A89CBC4182533BE00A4E455 /* oolite_shuttle.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_shuttle.dat; sourceTree = ""; }; - 1A89CBC5182533BE00A4E455 /* oolite_sidewinder_escort.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_sidewinder_escort.dat; sourceTree = ""; }; - 1A89CBC6182533BE00A4E455 /* oolite_sidewinder.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_sidewinder.dat; sourceTree = ""; }; - 1A89CBC7182533BE00A4E455 /* oolite_thargoid.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_thargoid.dat; sourceTree = ""; }; - 1A89CBC8182533BE00A4E455 /* oolite_thargon.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_thargon.dat; sourceTree = ""; }; - 1A89CBC9182533BE00A4E455 /* oolite_transporter.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_transporter.dat; sourceTree = ""; }; - 1A89CBCA182533BE00A4E455 /* oolite_viper_interceptor.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_viper_interceptor.dat; sourceTree = ""; }; - 1A89CBCB182533BE00A4E455 /* oolite_viper.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_viper.dat; sourceTree = ""; }; - 1A89CBCC182533BE00A4E455 /* oolite_worm.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_worm.dat; sourceTree = ""; }; - 1A89CBCD182533BE00A4E455 /* oolite_buoy.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_buoy.dat; sourceTree = ""; }; - 1A89CBCE182533BE00A4E455 /* oolite_buoy_subents.dat */ = {isa = PBXFileReference; lastKnownFileType = text; path = oolite_buoy_subents.dat; sourceTree = ""; }; - 1A89CBFA1825340000A4E455 /* oolite_barrel_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_barrel_diffuse.png; sourceTree = ""; }; - 1A89CBFB1825340000A4E455 /* oolite_barrel2_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_barrel2_diffuse.png; sourceTree = ""; }; - 1A89CBFC1825340000A4E455 /* oolite_boa_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_boa_diffuse.png; sourceTree = ""; }; - 1A89CBFD1825340000A4E455 /* oolite_boa_subents.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_boa_subents.png; sourceTree = ""; }; - 1A89CBFE1825340000A4E455 /* oolite_boa-mk2_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite_boa-mk2_diffuse.png"; sourceTree = ""; }; - 1A89CBFF1825340000A4E455 /* oolite_boa-mk2_subents.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite_boa-mk2_subents.png"; sourceTree = ""; }; - 1A89CC001825340000A4E455 /* oolite_cobra3_diffuse_alt.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_cobra3_diffuse_alt.png; sourceTree = ""; }; - 1A89CC011825340000A4E455 /* oolite_cobra3_diffuse_pirate.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_cobra3_diffuse_pirate.png; sourceTree = ""; }; - 1A89CC021825340000A4E455 /* oolite_cobra3_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_cobra3_diffuse.png; sourceTree = ""; }; - 1A89CC031825340000A4E455 /* oolite_cobra3_subents.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_cobra3_subents.png; sourceTree = ""; }; - 1A89CC041825340000A4E455 /* oolite_cobramk1_diffuse_alt.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_cobramk1_diffuse_alt.png; sourceTree = ""; }; - 1A89CC051825340000A4E455 /* oolite_cobramk1_diffuse_miner.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_cobramk1_diffuse_miner.png; sourceTree = ""; }; - 1A89CC061825340000A4E455 /* oolite_cobramk1_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_cobramk1_diffuse.png; sourceTree = ""; }; - 1A89CC071825340000A4E455 /* oolite_constrictor_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_constrictor_diffuse.png; sourceTree = ""; }; - 1A89CC081825340000A4E455 /* oolite_constrictor_subents.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_constrictor_subents.png; sourceTree = ""; }; - 1A89CC091825340000A4E455 /* oolite_coriolis_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_coriolis_diffuse.png; sourceTree = ""; }; - 1A89CC0A1825340000A4E455 /* oolite_coriolis_dock_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_coriolis_dock_diffuse.png; sourceTree = ""; }; - 1A89CC0B1825340000A4E455 /* oolite_coriolis_faceplate_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_coriolis_faceplate_diffuse.png; sourceTree = ""; }; - 1A89CC0C1825340000A4E455 /* oolite_coriolis_tris_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_coriolis_tris_diffuse.png; sourceTree = ""; }; - 1A89CC0D1825340000A4E455 /* oolite_dodo_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_dodo_diffuse.png; sourceTree = ""; }; - 1A89CC0E1825340000A4E455 /* oolite_dodo_dock_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_dodo_dock_diffuse.png; sourceTree = ""; }; - 1A89CC0F1825340000A4E455 /* oolite_dodo_faceplate_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_dodo_faceplate_diffuse.png; sourceTree = ""; }; - 1A89CC101825340000A4E455 /* oolite_escape_capsule_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_escape_capsule_diffuse.png; sourceTree = ""; }; - 1A89CC111825340000A4E455 /* oolite_ferdelance_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_ferdelance_diffuse.png; sourceTree = ""; }; - 1A89CC121825340000A4E455 /* oolite_ferdelance_subents.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_ferdelance_subents.png; sourceTree = ""; }; - 1A89CC131825340000A4E455 /* oolite_gecko_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_gecko_diffuse.png; sourceTree = ""; }; - 1A89CC141825340000A4E455 /* oolite_gecko_subents.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_gecko_subents.png; sourceTree = ""; }; - 1A89CC151825340000A4E455 /* oolite_ico_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_ico_diffuse.png; sourceTree = ""; }; - 1A89CC161825340000A4E455 /* oolite_ico_dock_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_ico_dock_diffuse.png; sourceTree = ""; }; - 1A89CC171825340000A4E455 /* oolite_ico_hull_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_ico_hull_diffuse.png; sourceTree = ""; }; - 1A89CC181825340000A4E455 /* oolite_krait_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_krait_diffuse.png; sourceTree = ""; }; - 1A89CC191825340000A4E455 /* oolite_mamba_diffuse_escort.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_mamba_diffuse_escort.png; sourceTree = ""; }; - 1A89CC1A1825340000A4E455 /* oolite_mamba_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_mamba_diffuse.png; sourceTree = ""; }; - 1A89CC1B1825340000A4E455 /* oolite_mamba_subents.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_mamba_subents.png; sourceTree = ""; }; - 1A89CC1C1825340000A4E455 /* oolite_missile_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_missile_diffuse.png; sourceTree = ""; }; - 1A89CC1D1825340000A4E455 /* oolite_missile_hardhead_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_missile_hardhead_diffuse.png; sourceTree = ""; }; - 1A89CC1E1825340000A4E455 /* oolite_moray_diffuse_med.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_moray_diffuse_med.png; sourceTree = ""; }; - 1A89CC1F1825340000A4E455 /* oolite_moray_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_moray_diffuse.png; sourceTree = ""; }; - 1A89CC201825340000A4E455 /* oolite_moray_subents.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_moray_subents.png; sourceTree = ""; }; - 1A89CC211825340000A4E455 /* oolite_python_diffuse_blackdog.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_python_diffuse_blackdog.png; sourceTree = ""; }; - 1A89CC221825340000A4E455 /* oolite_python_diffuse_trader.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_python_diffuse_trader.png; sourceTree = ""; }; - 1A89CC231825340000A4E455 /* oolite_python_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_python_diffuse.png; sourceTree = ""; }; - 1A89CC241825340000A4E455 /* oolite_python_subents_trader.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_python_subents_trader.png; sourceTree = ""; }; - 1A89CC251825340000A4E455 /* oolite_python_subents.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_python_subents.png; sourceTree = ""; }; - 1A89CC261825340000A4E455 /* oolite_rock_hermit_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_rock_hermit_diffuse.png; sourceTree = ""; }; - 1A89CC271825340000A4E455 /* oolite_rock_hermit_dock_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_rock_hermit_dock_diffuse.png; sourceTree = ""; }; - 1A89CC281825340000A4E455 /* oolite_rock_hermit_pipes_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_rock_hermit_pipes_diffuse.png; sourceTree = ""; }; - 1A89CC291825340000A4E455 /* oolite_rock_hermit_rock_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_rock_hermit_rock_diffuse.png; sourceTree = ""; }; - 1A89CC2A1825340000A4E455 /* oolite_rock_hermit_tunnel_extras_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_rock_hermit_tunnel_extras_diffuse.png; sourceTree = ""; }; - 1A89CC2B1825340000A4E455 /* oolite_shuttle_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_shuttle_diffuse.png; sourceTree = ""; }; - 1A89CC2C1825340000A4E455 /* oolite_sidewinder_diffuse_escort.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_sidewinder_diffuse_escort.png; sourceTree = ""; }; - 1A89CC2D1825340000A4E455 /* oolite_sidewinder_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_sidewinder_diffuse.png; sourceTree = ""; }; - 1A89CC2E1825340000A4E455 /* oolite_thargoid_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_thargoid_diffuse.png; sourceTree = ""; }; - 1A89CC2F1825340000A4E455 /* oolite_thargon_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_thargon_diffuse.png; sourceTree = ""; }; - 1A89CC301825340000A4E455 /* oolite_transporter_diffuse_miner.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_transporter_diffuse_miner.png; sourceTree = ""; }; - 1A89CC311825340000A4E455 /* oolite_transporter_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_transporter_diffuse.png; sourceTree = ""; }; - 1A89CC321825340000A4E455 /* oolite_viper_diffuse_pursuit.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_viper_diffuse_pursuit.png; sourceTree = ""; }; - 1A89CC331825340000A4E455 /* oolite_viper_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_viper_diffuse.png; sourceTree = ""; }; - 1A89CC341825340000A4E455 /* oolite_viper_interceptor_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_viper_interceptor_diffuse.png; sourceTree = ""; }; - 1A89CC351825340000A4E455 /* oolite_worm_diffuse_miner.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_worm_diffuse_miner.png; sourceTree = ""; }; - 1A89CC361825340000A4E455 /* oolite_worm_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_worm_diffuse.png; sourceTree = ""; }; - 1A89CC371825340000A4E455 /* oolite_adder_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_adder_diffuse.png; sourceTree = ""; }; - 1A89CC381825340000A4E455 /* oolite_anaconda_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_anaconda_diffuse.png; sourceTree = ""; }; - 1A89CC391825340000A4E455 /* oolite_anaconda_subents.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_anaconda_subents.png; sourceTree = ""; }; - 1A89CC3A1825340000A4E455 /* oolite_asp_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_asp_diffuse.png; sourceTree = ""; }; - 1A89CC3B1825340000A4E455 /* oolite_asp_subents.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_asp_subents.png; sourceTree = ""; }; - 1A89CC3C1825340000A4E455 /* oolite_buoy_diffuse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_buoy_diffuse.png; sourceTree = ""; }; - 1A89CC3D1825340000A4E455 /* oolite_buoy_illumination.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_buoy_illumination.png; sourceTree = ""; }; - 1A89CC3F1825340000A4E455 /* oolite_buoy_specular.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_buoy_specular.png; sourceTree = ""; }; - 1A89CC401825340000A4E455 /* oolite_buoy_subents.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oolite_buoy_subents.png; sourceTree = ""; }; - 1A89CC7F1825349A00A4E455 /* oolite-cloaking-device-equipment.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-cloaking-device-equipment.js"; sourceTree = ""; }; - 1A89CC81182534B400A4E455 /* oolite-primable-equipment-manager.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-primable-equipment-manager.js"; sourceTree = ""; }; - 1A8A37540B960337007D20B8 /* NSMutableDictionaryOOExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSMutableDictionaryOOExtensions.m; sourceTree = ""; }; - 1A8A37550B960337007D20B8 /* NSMutableDictionaryOOExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSMutableDictionaryOOExtensions.h; sourceTree = ""; }; - 1A8A394C0B96229C007D20B8 /* NSFileManagerOOExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSFileManagerOOExtensions.m; sourceTree = ""; }; - 1A8A394D0B96229C007D20B8 /* NSFileManagerOOExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSFileManagerOOExtensions.h; sourceTree = ""; }; - 1A8A3A360B962AEF007D20B8 /* NSScannerOOExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSScannerOOExtensions.h; sourceTree = ""; }; - 1A8A3A370B962AEF007D20B8 /* NSScannerOOExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSScannerOOExtensions.m; sourceTree = ""; }; - 1A8BB8E80E8311F900122974 /* OONullTexture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OONullTexture.h; sourceTree = ""; }; - 1A8BB8E90E8311F900122974 /* OONullTexture.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OONullTexture.m; sourceTree = ""; }; - 1A8C97E4117A1A2F00D8AB7E /* OOCombinedEmissionMapGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCombinedEmissionMapGenerator.h; sourceTree = ""; }; - 1A8C97E5117A1A2F00D8AB7E /* OOCombinedEmissionMapGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCombinedEmissionMapGenerator.m; sourceTree = ""; }; - 1A92AB6F1846403200C507E3 /* OOJSExhaustPlume.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSExhaustPlume.h; sourceTree = ""; }; - 1A92AB701846403200C507E3 /* OOJSExhaustPlume.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSExhaustPlume.m; sourceTree = ""; }; - 1A92AB781846403F00C507E3 /* OOJSFlasher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSFlasher.h; sourceTree = ""; }; - 1A92AB791846403F00C507E3 /* OOJSFlasher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSFlasher.m; sourceTree = ""; }; - 1A9322950DF53C33003FD306 /* OOJSSystemInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSSystemInfo.h; sourceTree = ""; }; - 1A9322960DF53C33003FD306 /* OOJSSystemInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSSystemInfo.m; sourceTree = ""; }; - 1A9400BD0BAF0ECD005F6CF3 /* OOStringParsing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOStringParsing.m; sourceTree = ""; }; - 1A9400BF0BAF0EDB005F6CF3 /* OOStringParsing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOStringParsing.h; sourceTree = ""; }; - 1A9403CF0BAF36C3005F6CF3 /* OOFunctionAttributes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOFunctionAttributes.h; sourceTree = ""; }; - 1A9404240BAF3DED005F6CF3 /* OOCollectionExtractors.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCollectionExtractors.m; sourceTree = ""; }; - 1A9404250BAF3DED005F6CF3 /* OOCollectionExtractors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCollectionExtractors.h; sourceTree = ""; }; - 1A9404640BAF42BE005F6CF3 /* OOPListParsing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPListParsing.h; sourceTree = ""; }; - 1A9404650BAF42BF005F6CF3 /* OOPListParsing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPListParsing.m; sourceTree = ""; }; - 1A9404920BAF4582005F6CF3 /* OOMaths.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOMaths.h; sourceTree = ""; }; - 1A9404A10BAF462D005F6CF3 /* OOVector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOVector.h; sourceTree = ""; }; - 1A9404A20BAF462D005F6CF3 /* OOVector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOVector.m; sourceTree = ""; }; - 1A9405360BAF4FA6005F6CF3 /* OOMatrix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOMatrix.h; sourceTree = ""; }; - 1A9405370BAF4FA6005F6CF3 /* OOMatrix.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOMatrix.m; sourceTree = ""; }; - 1A94057D0BAF52AD005F6CF3 /* OOQuaternion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOQuaternion.h; sourceTree = ""; }; - 1A94057E0BAF52AD005F6CF3 /* OOQuaternion.m */ = {isa = PBXFileReference; comments = "-O3 -falign-loops=32 -falign-loops-max-skip=31 -falign-functions=32"; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOQuaternion.m; sourceTree = ""; }; - 1A9406290BAF6170005F6CF3 /* OOBoundingBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOBoundingBox.h; sourceTree = ""; }; - 1A9406820BAF66D6005F6CF3 /* OOVoxel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOVoxel.h; sourceTree = ""; }; - 1A9406830BAF66D6005F6CF3 /* OOVoxel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOVoxel.m; sourceTree = ""; }; - 1A9406B20BAF67BF005F6CF3 /* OOTriangle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOTriangle.h; sourceTree = ""; }; - 1A9407BF0BAF7032005F6CF3 /* GNUmakefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GNUmakefile; sourceTree = ""; usesTabs = 0; }; - 1A9438CD17F84C560011F80B /* OOExplosionCloudEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOExplosionCloudEntity.h; sourceTree = ""; }; - 1A9438CE17F84C560011F80B /* OOExplosionCloudEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOExplosionCloudEntity.m; sourceTree = ""; }; - 1A94E4FB0F348D4300F1B5D9 /* delayedReactToAttackAI.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = delayedReactToAttackAI.plist; sourceTree = ""; }; - 1A9533890C02089E004EBB58 /* material-defaults.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = "material-defaults.plist"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A95338A0C02089E004EBB58 /* planetinfo.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = planetinfo.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1A95C03E118A450E002EE302 /* OOConvertCubeMapToLatLong.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OOConvertCubeMapToLatLong.h; path = src/Core/OOConvertCubeMapToLatLong.h; sourceTree = SOURCE_ROOT; }; - 1A95C03F118A450E002EE302 /* OOConvertCubeMapToLatLong.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OOConvertCubeMapToLatLong.m; path = src/Core/OOConvertCubeMapToLatLong.m; sourceTree = SOURCE_ROOT; }; - 1A972FFC12E6077D001F2406 /* OOCompassMode.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OOCompassMode.tbl; sourceTree = ""; }; - 1A97302012E60F9B001F2406 /* OOGUIScreenID.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OOGUIScreenID.tbl; sourceTree = ""; }; - 1A97305C12E61427001F2406 /* OOGalacticHyperspaceBehaviour.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OOGalacticHyperspaceBehaviour.tbl; sourceTree = ""; }; - 1A97528D15DECA6600108FA5 /* OOFullScreenWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOFullScreenWindow.h; sourceTree = ""; }; - 1A97528E15DECA6600108FA5 /* OOFullScreenWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOFullScreenWindow.m; sourceTree = ""; }; - 1A97D68512FD83BD0009D74A /* OOShipDamageType.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OOShipDamageType.tbl; sourceTree = ""; }; - 1A97D77212FDB6610009D74A /* OOQuiriumCascadeEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOQuiriumCascadeEntity.h; sourceTree = ""; }; - 1A97D77312FDB6610009D74A /* OOQuiriumCascadeEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOQuiriumCascadeEntity.m; sourceTree = ""; }; - 1A9FCF2115DAC8E100E965D5 /* OOMacSnowLeopardFullScreenController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOMacSnowLeopardFullScreenController.h; sourceTree = ""; }; - 1A9FCF2215DAC8E100E965D5 /* OOMacSnowLeopardFullScreenController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOMacSnowLeopardFullScreenController.m; sourceTree = ""; }; - 1A9FCF2515DAC9BC00E965D5 /* GameController+FullScreen.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "GameController+FullScreen.m"; sourceTree = ""; }; - 1AA085EE182578AF007CCAEB /* OOALBufferedSound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOALBufferedSound.h; sourceTree = ""; }; - 1AA085EF182578AF007CCAEB /* OOALBufferedSound.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOALBufferedSound.m; sourceTree = ""; }; - 1AA085F2182578AF007CCAEB /* OOALMusic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOALMusic.h; sourceTree = ""; }; - 1AA085F3182578AF007CCAEB /* OOALMusic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOALMusic.m; sourceTree = ""; }; - 1AA085F4182578AF007CCAEB /* OOALSound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOALSound.h; sourceTree = ""; }; - 1AA085F5182578AF007CCAEB /* OOALSound.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOALSound.m; sourceTree = ""; }; - 1AA085F6182578AF007CCAEB /* OOALSoundChannel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOALSoundChannel.h; sourceTree = ""; }; - 1AA085F7182578AF007CCAEB /* OOALSoundChannel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOALSoundChannel.m; sourceTree = ""; }; - 1AA085F8182578AF007CCAEB /* OOALSoundDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOALSoundDecoder.h; sourceTree = ""; }; - 1AA085F9182578AF007CCAEB /* OOALSoundDecoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOALSoundDecoder.m; sourceTree = ""; }; - 1AA085FA182578AF007CCAEB /* OOALSoundMixer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOALSoundMixer.h; sourceTree = ""; }; - 1AA085FB182578AF007CCAEB /* OOALSoundMixer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOALSoundMixer.m; sourceTree = ""; }; - 1AA085FC182578AF007CCAEB /* OOALStreamedSound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOALStreamedSound.h; sourceTree = ""; }; - 1AA085FD182578AF007CCAEB /* OOALStreamedSound.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOALStreamedSound.m; sourceTree = ""; }; - 1AA0860E182578B8007CCAEB /* OOOpenAL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOOpenAL.h; sourceTree = ""; }; - 1AA0860F182578B8007CCAEB /* OOOpenALController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOOpenALController.h; sourceTree = ""; }; - 1AA08610182578B8007CCAEB /* OOOpenALController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOOpenALController.m; sourceTree = ""; }; - 1AA0861518257A11007CCAEB /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = System/Library/Frameworks/OpenAL.framework; sourceTree = SDKROOT; }; - 1AA59C6A1780396C007C7373 /* OOJSWormhole.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSWormhole.h; sourceTree = ""; }; - 1AA59C6B1780396C007C7373 /* OOJSWormhole.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSWormhole.m; sourceTree = ""; }; - 1AA7FCA910C2B9BA0058FBED /* OOPlanetDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPlanetDrawable.h; sourceTree = ""; }; - 1AA7FCAA10C2B9BA0058FBED /* OOPlanetDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPlanetDrawable.m; sourceTree = ""; }; - 1AA7FCAD10C2BA3B0058FBED /* OOPlanetData.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = OOPlanetData.c; sourceTree = ""; }; - 1AA7FCAE10C2BA3B0058FBED /* OOPlanetData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPlanetData.h; sourceTree = ""; }; - 1AA7FD1C10C2C3750058FBED /* OOPlanetEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPlanetEntity.h; sourceTree = ""; }; - 1AA7FD1D10C2C3750058FBED /* OOPlanetEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPlanetEntity.m; sourceTree = ""; }; - 1AA7FDDA10C2DC800058FBED /* OOSunEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOSunEntity.h; sourceTree = ""; }; - 1AA7FDDB10C2DC800058FBED /* OOSunEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOSunEntity.m; sourceTree = ""; }; - 1AA7FE2B10C2F2070058FBED /* OOTextureGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOTextureGenerator.h; sourceTree = ""; }; - 1AA7FE2C10C2F2070058FBED /* OOTextureGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOTextureGenerator.m; sourceTree = ""; }; - 1AA7FE3210C2F26A0058FBED /* OOPlanetTextureGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPlanetTextureGenerator.h; sourceTree = ""; }; - 1AA7FE3310C2F26A0058FBED /* OOPlanetTextureGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPlanetTextureGenerator.m; sourceTree = ""; }; - 1AA82C810CC10E3D0023B797 /* OOJSWorldScripts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSWorldScripts.h; sourceTree = ""; }; - 1AA82C820CC10E3D0023B797 /* OOJSWorldScripts.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSWorldScripts.m; sourceTree = ""; }; - 1AAADFBD17CB25A30032C68B /* oolite-registership.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-registership.js"; sourceTree = ""; }; - 1AAB9A960D779F3C00A9F424 /* OOCocoa.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCocoa.m; sourceTree = ""; }; - 1AABA83C11B941D1003487D5 /* OOPixMapTextureLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPixMapTextureLoader.h; sourceTree = ""; }; - 1AABA83D11B941D1003487D5 /* OOPixMapTextureLoader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPixMapTextureLoader.m; sourceTree = ""; }; - 1AAEE9D8161F7523003A5A1E /* OOStringExpander.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOStringExpander.h; sourceTree = ""; }; - 1AAEE9D9161F7523003A5A1E /* OOStringExpander.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOStringExpander.m; sourceTree = ""; }; - 1AAF56160F1A198400A2F2E6 /* Comparison.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Comparison.h; sourceTree = ""; }; - 1AAF56590F1A27D900A2F2E6 /* whitelist.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = whitelist.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1AB01ABC0BB15AED00F1B949 /* OOTextureScaling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OOTextureScaling.h; path = ../OOTextureScaling.h; sourceTree = ""; }; - 1AB01ABD0BB15AED00F1B949 /* OOTextureScaling.m */ = {isa = PBXFileReference; comments = "-O3"; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OOTextureScaling.m; path = ../OOTextureScaling.m; sourceTree = ""; }; - 1AB01BB90BB16A8A00F1B949 /* OOFastArithmetic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOFastArithmetic.h; sourceTree = ""; }; - 1AB23F06165A5A7700642977 /* oolite-conditions.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = "oolite-conditions.js"; sourceTree = ""; }; - 1AB2AAF80C4CE0CC0008CF4E /* OOOXPVerifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOOXPVerifier.h; sourceTree = ""; }; - 1AB2AAF90C4CE0CC0008CF4E /* OOOXPVerifier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOOXPVerifier.m; sourceTree = ""; }; - 1AB2AB120C4CE4070008CF4E /* verifyOXP.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; name = verifyOXP.plist; path = ../../../Resources/Config/verifyOXP.plist; sourceTree = ""; }; - 1AB2D61C15B86EA400177AAF /* OoliteUnitTests.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = OoliteUnitTests.xcodeproj; path = "Mac-specific/OCUnitTests/OoliteUnitTests.xcodeproj"; sourceTree = ""; }; - 1AB4AEB60D688AD9003076D6 /* OOLogHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOLogHeader.h; sourceTree = ""; }; - 1AB4AEB70D688AD9003076D6 /* OOLogHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOLogHeader.m; sourceTree = ""; }; - 1AB5E1ED12BD628500C334DD /* OOJoystickManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJoystickManager.h; sourceTree = ""; }; - 1AB5E1EE12BD628500C334DD /* OOJoystickManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJoystickManager.m; sourceTree = ""; }; - 1AB6963A191D85F600E4B232 /* OOStandaloneAtmosphereGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOStandaloneAtmosphereGenerator.h; sourceTree = ""; }; - 1AB6963B191D85F600E4B232 /* OOStandaloneAtmosphereGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOStandaloneAtmosphereGenerator.m; sourceTree = ""; }; - 1AB775FC12CA2E53001478BB /* libjs.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libjs.xcodeproj; path = "deps/Cocoa-deps/libjs/libjs.xcodeproj"; sourceTree = ""; }; - 1AB784F70D554F7B00517983 /* OOJSSoundSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSSoundSource.h; sourceTree = ""; }; - 1AB784F80D554F7B00517983 /* OOJSSoundSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSSoundSource.m; sourceTree = ""; }; - 1AB813070E90D8E500A84923 /* OOLogOutputHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOLogOutputHandler.m; sourceTree = ""; }; - 1AB813080E90D8E500A84923 /* OOLogOutputHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOLogOutputHandler.h; sourceTree = ""; }; - 1AB9AE89107F459B00B6F3CE /* OOPolygonSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPolygonSprite.h; sourceTree = ""; }; - 1AB9AE8A107F459B00B6F3CE /* OOPolygonSprite.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPolygonSprite.m; sourceTree = ""; }; - 1ABA415C15ACBB6700F7E841 /* DockEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DockEntity.h; sourceTree = ""; }; - 1ABA415D15ACBB6700F7E841 /* DockEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DockEntity.m; sourceTree = ""; }; - 1ABA416015ADAB8D00F7E841 /* OOJSDock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSDock.h; sourceTree = ""; }; - 1ABA416115ADAB8D00F7E841 /* OOJSDock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSDock.m; sourceTree = ""; }; - 1ABAD72F0F350B3400FD2CBF /* OOShipGroup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOShipGroup.m; sourceTree = ""; }; - 1ABAD7300F350B3400FD2CBF /* OOShipGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOShipGroup.h; sourceTree = ""; }; - 1ABB688B0D044306008BE96D /* OOLoggingExtended.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOLoggingExtended.h; sourceTree = ""; }; - 1ABC03EB0EF86110003B740A /* OOCrosshairs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCrosshairs.h; sourceTree = ""; }; - 1ABC03EC0EF86110003B740A /* OOCrosshairs.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = OOCrosshairs.m; sourceTree = ""; }; - 1ABC04260EF872B7003B740A /* crosshairs.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = crosshairs.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1ABC47FC0F155F0500B977AD /* OOJSFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSFunction.h; sourceTree = ""; }; - 1ABC47FD0F155F0500B977AD /* OOJSFunction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSFunction.m; sourceTree = ""; }; - 1ABDBA390EB365D90086BC3D /* OOIsNumberLiteral.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOIsNumberLiteral.m; sourceTree = ""; }; - 1ABDBA3A0EB365D90086BC3D /* OOIsNumberLiteral.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOIsNumberLiteral.h; sourceTree = ""; }; - 1ABFEE2110507987005AA752 /* oolite-nonshared.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "oolite-nonshared.xcconfig"; path = "src/Cocoa/oolite-nonshared.xcconfig"; sourceTree = ""; }; - 1AC0E9460B974DC200C46994 /* GPL.TXT */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GPL.TXT; sourceTree = ""; }; - 1AC0E9470B974DC200C46994 /* FAQ.TXT */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FAQ.TXT; sourceTree = ""; }; - 1AC0E9490B974DC200C46994 /* LICENSE.TXT */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE.TXT; sourceTree = ""; }; - 1AC0E94A0B974DC200C46994 /* PORTING.TXT */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PORTING.TXT; sourceTree = ""; }; - 1AC0E94B0B974DC200C46994 /* README_LINUX.TXT */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README_LINUX.TXT; sourceTree = ""; }; - 1AC0F29D12E1DADC00ECBBB0 /* OOJSEngineDebuggerHelpers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSEngineDebuggerHelpers.m; sourceTree = ""; }; - 1AC27A0D0EA7E9940054E5F0 /* OOJSEquipmentInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSEquipmentInfo.h; sourceTree = ""; }; - 1AC27A0E0EA7E9940054E5F0 /* OOJSEquipmentInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSEquipmentInfo.m; sourceTree = ""; }; - 1AC544F90D4D217900C90E5B /* oolite-font.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-font.png"; sourceTree = ""; }; - 1AC545040D4D228400C90E5B /* OOEncodingConverter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOEncodingConverter.h; sourceTree = ""; }; - 1AC545050D4D228400C90E5B /* OOEncodingConverter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOEncodingConverter.m; sourceTree = ""; }; - 1AC5452C0D4D298E00C90E5B /* oolite-font.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = "oolite-font.plist"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1AC775E00C2DD4E900ECFF3B /* OODebugGLDrawing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OODebugGLDrawing.h; sourceTree = ""; }; - 1AC775E10C2DD4E900ECFF3B /* OODebugGLDrawing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = OODebugGLDrawing.m; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; - 1AC83175155534A30032448F /* fleeQMineAI.plist */ = {isa = PBXFileReference; explicitFileType = text; path = fleeQMineAI.plist; sourceTree = ""; }; - 1AC83177155534B00032448F /* respondQMineAI.plist */ = {isa = PBXFileReference; explicitFileType = text; path = respondQMineAI.plist; sourceTree = ""; }; - 1AC973F90C9847850010C42B /* pirate-victim-roles.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = "pirate-victim-roles.plist"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1ACB1CEF118DBC65007B9A1F /* OOEnvironmentCubeMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOEnvironmentCubeMap.h; sourceTree = ""; }; - 1ACB1CF0118DBC65007B9A1F /* OOEnvironmentCubeMap.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOEnvironmentCubeMap.m; sourceTree = ""; }; - 1ACB1D16118DCBC0007B9A1F /* OOConcreteTexture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOConcreteTexture.h; sourceTree = ""; }; - 1ACB1D17118DCBC0007B9A1F /* OOConcreteTexture.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOConcreteTexture.m; sourceTree = ""; }; - 1ACB1D1B118DCE5A007B9A1F /* OOTextureInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOTextureInternal.h; sourceTree = ""; }; - 1ACBF06F0D82DF9B00CC005F /* OOSoundSourcePool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOSoundSourcePool.h; sourceTree = ""; }; - 1ACBF0700D82DF9B00CC005F /* OOSoundSourcePool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOSoundSourcePool.m; sourceTree = ""; }; - 1ACE208E0D805F78009F6957 /* oolite-scarred-metal-specular.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-scarred-metal-specular.png"; sourceTree = ""; }; - 1ACEA3470C91507000C7CE97 /* OORoleSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OORoleSet.h; sourceTree = ""; }; - 1ACEA3480C91507000C7CE97 /* OORoleSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OORoleSet.m; sourceTree = ""; }; - 1ACEA6BD0C91DA3E00C7CE97 /* OOJSGlobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSGlobal.h; sourceTree = ""; }; - 1ACEA6BE0C91DA3E00C7CE97 /* OOJSGlobal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSGlobal.m; sourceTree = ""; }; - 1ACEA7260C91DF2800C7CE97 /* OOJSMissionVariables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSMissionVariables.h; sourceTree = ""; }; - 1ACEA7270C91DF2800C7CE97 /* OOJSMissionVariables.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSMissionVariables.m; sourceTree = ""; }; - 1ACEA7A80C91E32800C7CE97 /* OOJSMission.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSMission.h; sourceTree = ""; }; - 1ACEA7A90C91E32800C7CE97 /* OOJSMission.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSMission.m; sourceTree = ""; }; - 1AD0C32F0C463FCB0070BD23 /* autoAImap.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; languageSpecificationIdentifier = plist; path = autoAImap.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1AD1F4C70CD9E42A00EAE520 /* NSThreadOOExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSThreadOOExtensions.h; sourceTree = ""; }; - 1AD1F4C80CD9E42A00EAE520 /* NSThreadOOExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSThreadOOExtensions.m; sourceTree = ""; }; - 1AD2E31418F17BC700239EBB /* OOShipLibraryDescriptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOShipLibraryDescriptions.h; sourceTree = ""; }; - 1AD2E31518F17BC700239EBB /* OOShipLibraryDescriptions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOShipLibraryDescriptions.m; sourceTree = ""; }; - 1AD3C338163A92F600469C4D /* OOOpenGLStateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOOpenGLStateManager.m; sourceTree = ""; }; - 1AD5A81B12D3A9FD00B62503 /* exports-debug-64.exp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.exports; name = "exports-debug-64.exp"; path = "src/Cocoa/exports-debug-64.exp"; sourceTree = ""; }; - 1AD8522317947BD600CBE743 /* OOHPVector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOHPVector.h; sourceTree = ""; }; - 1AD8522417947BD600CBE743 /* OOHPVector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOHPVector.m; sourceTree = ""; }; - 1AD8522C17947C9400CBE743 /* OOJSPopulatorDefinition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSPopulatorDefinition.h; sourceTree = ""; }; - 1AD8522D17947C9500CBE743 /* OOJSPopulatorDefinition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSPopulatorDefinition.m; sourceTree = ""; }; - 1AD88FAF103F29D300AA36F4 /* oolite-options.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "oolite-options.xcconfig"; path = "src/Cocoa/oolite-options.xcconfig"; sourceTree = ""; }; - 1ADA564710CD68D800E891B8 /* OOStellarBody.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOStellarBody.h; sourceTree = ""; }; - 1ADA8AB10F42DBA80001BEC9 /* OODeepCopy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OODeepCopy.h; sourceTree = ""; }; - 1ADA8AB20F42DBA80001BEC9 /* OODeepCopy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OODeepCopy.m; sourceTree = ""; }; - 1ADBA54E0BD0F173008FC99C /* OOBasicMaterial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOBasicMaterial.h; sourceTree = ""; }; - 1ADBA54F0BD0F173008FC99C /* OOBasicMaterial.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOBasicMaterial.m; sourceTree = ""; }; - 1AE1A93F15D2C4E4003F4D56 /* OOFullScreenController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOFullScreenController.h; sourceTree = ""; }; - 1AE1A94015D2C4E4003F4D56 /* OOFullScreenController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOFullScreenController.m; sourceTree = ""; }; - 1AE242C31054226900EAA7F2 /* OOFlasherEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOFlasherEntity.h; sourceTree = ""; }; - 1AE242C41054226900EAA7F2 /* OOFlasherEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOFlasherEntity.m; sourceTree = ""; }; - 1AE24371105439B500EAA7F2 /* OOLightParticleEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOLightParticleEntity.h; sourceTree = ""; }; - 1AE24372105439B500EAA7F2 /* OOLightParticleEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOLightParticleEntity.m; sourceTree = ""; }; - 1AE3454B12CB77A700FD8C62 /* Ogg.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Ogg.xcodeproj; path = "deps/Cocoa-deps/Ogg Vorbis/Ogg.xcodeproj"; sourceTree = ""; }; - 1AE3455112CB77AC00FD8C62 /* Vorbis.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Vorbis.xcodeproj; path = "deps/Cocoa-deps/Ogg Vorbis/Vorbis.xcodeproj"; sourceTree = ""; }; - 1AE45E5412EB176B00B570E1 /* oolite-constrictor-pilot.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-constrictor-pilot.js"; sourceTree = ""; }; - 1AE45E5512EB177300B570E1 /* oolite-locale-functions.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "oolite-locale-functions.js"; sourceTree = ""; }; - 1AE7324E12F75D470045513D /* OOLaserShotEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOLaserShotEntity.h; sourceTree = ""; }; - 1AE7324F12F75D470045513D /* OOLaserShotEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOLaserShotEntity.m; sourceTree = ""; }; - 1AE834C90D9598C10097CB8A /* oolite-barrel-specular.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-barrel-specular.png"; sourceTree = ""; }; - 1AE8837312EF91560075814F /* Sparkle.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sparkle.framework; path = "deps/Cocoa-deps/Sparkle/Sparkle.framework"; sourceTree = ""; }; - 1AE8837F12EF91E80075814F /* SparkleVerificationKey.pem */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = SparkleVerificationKey.pem; path = "Mac-specific/SparkleVerificationKey.pem"; sourceTree = SOURCE_ROOT; }; - 1AEA229D12CBD18600EC0F43 /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = System/Library/Frameworks/CoreServices.framework; sourceTree = SDKROOT; }; - 1AEB48D1119D51BD007BD514 /* gpu-settings.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = "gpu-settings.plist"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 1AEB4918119D5AAA007BD514 /* OORegExpMatcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OORegExpMatcher.h; sourceTree = ""; }; - 1AEB4919119D5AAA007BD514 /* OORegExpMatcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OORegExpMatcher.m; sourceTree = ""; }; - 1AECE9DF1177959F003986A8 /* OOPixMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOPixMap.h; sourceTree = ""; }; - 1AECE9EE11779910003986A8 /* OOPixMap.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOPixMap.m; sourceTree = ""; }; - 1AED2D0A0C04586C004A1118 /* OOGraphicsResetManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOGraphicsResetManager.h; sourceTree = ""; }; - 1AED2D0B0C04586C004A1118 /* OOGraphicsResetManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOGraphicsResetManager.m; sourceTree = ""; }; - 1AEF57D212E51DDB00546444 /* OOJSEngineNativeWrappers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSEngineNativeWrappers.h; sourceTree = ""; }; - 1AF4AF4815B858AA009243BE /* OOWeakSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOWeakSet.h; sourceTree = ""; }; - 1AF4AF4915B858AA009243BE /* OOWeakSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOWeakSet.m; sourceTree = ""; }; - 1AF8E33A0CC169F500CA6001 /* contributors.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = contributors.txt; sourceTree = ""; }; - 2512833C09BA27C100F43D55 /* Octree.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Octree.m; sourceTree = ""; }; - 2512833D09BA27C100F43D55 /* Octree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Octree.h; sourceTree = ""; }; - 2512834009BA27EC00F43D55 /* OOMeshToOctreeConverter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = OOMeshToOctreeConverter.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; - 2512834109BA27EC00F43D55 /* OOMeshToOctreeConverter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = OOMeshToOctreeConverter.m; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; - 2512834409BA281500F43D55 /* CollisionRegion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CollisionRegion.h; sourceTree = ""; }; - 2512834509BA281500F43D55 /* CollisionRegion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CollisionRegion.m; sourceTree = ""; }; - 25160E2E0995362F0037C2E1 /* OOCocoa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCocoa.h; sourceTree = ""; }; - 25161101099544380037C2E1 /* AI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = AI.m; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; - 25161102099544380037C2E1 /* OOXMLExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOXMLExtensions.m; sourceTree = ""; }; - 25161106099544390037C2E1 /* AI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = AI.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; - 25161107099544390037C2E1 /* OOXMLExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOXMLExtensions.h; sourceTree = ""; }; - 25161108099544390037C2E1 /* OOTrumble.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOTrumble.m; sourceTree = ""; }; - 2516110B099544390037C2E1 /* GameController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GameController.h; sourceTree = ""; }; - 2516110C099544390037C2E1 /* GameController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GameController.m; sourceTree = ""; }; - 25161110099544390037C2E1 /* OOTrumble.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOTrumble.h; sourceTree = ""; }; - 25161116099544390037C2E1 /* OOSound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOSound.h; sourceTree = ""; }; - 2516111B099544390037C2E1 /* OOCharacter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCharacter.m; sourceTree = ""; }; - 2516111C099544390037C2E1 /* OOCharacter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCharacter.h; sourceTree = ""; }; - 25161126099544390037C2E1 /* GuiDisplayGen.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = GuiDisplayGen.m; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; - 25161127099544390037C2E1 /* GuiDisplayGen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = GuiDisplayGen.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; - 2516112B099544390037C2E1 /* HeadUpDisplay.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = HeadUpDisplay.m; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; - 2516112C099544390037C2E1 /* HeadUpDisplay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HeadUpDisplay.h; sourceTree = ""; }; - 25161134099544390037C2E1 /* TextureStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextureStore.h; sourceTree = ""; }; - 25161139099544390037C2E1 /* ResourceManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResourceManager.m; sourceTree = ""; }; - 2516113A099544390037C2E1 /* ResourceManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResourceManager.h; sourceTree = ""; }; - 25161143099544390037C2E1 /* Universe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = Universe.m; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; - 25161144099544390037C2E1 /* Universe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Universe.h; sourceTree = ""; }; - 25161145099544390037C2E1 /* TextureStore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TextureStore.m; sourceTree = ""; }; - 2576E7B209B4F418007410F7 /* MyOpenGLView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyOpenGLView.h; sourceTree = ""; }; - 25CD0C4D09B4F5A70060106D /* Growl.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Growl.framework; path = "deps/Cocoa-deps/Growl.framework"; sourceTree = ""; }; - 25F3E6300994F033002F25FD /* legacy_random.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = legacy_random.h; sourceTree = ""; }; - 25F3E6320994F04C002F25FD /* legacy_random.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = legacy_random.c; sourceTree = ""; }; - 25F3E63A0994F08A002F25FD /* OOOpenGL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = OOOpenGL.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; - 25F3E6BC0994F30A002F25FD /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; - 25F3E8A40994FE65002F25FD /* oolite-document.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = "oolite-document.icns"; sourceTree = ""; }; - 25F3E8A50994FE65002F25FD /* oolite-expansion-document.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = "oolite-expansion-document.icns"; sourceTree = ""; }; - 25F3E8A60994FE65002F25FD /* oolite-icon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = "oolite-icon.icns"; sourceTree = ""; }; - 25F3E8B30994FE9B002F25FD /* InfoPlist.strings */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; path = InfoPlist.strings; sourceTree = ""; }; - 25F3E8BC09950088002F25FD /* Info-Oolite.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; name = "Info-Oolite.plist"; path = "../src/Cocoa/Info-Oolite.plist"; sourceTree = ""; }; - 25F46750099695D5009483BF /* OoliteApp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OoliteApp.h; sourceTree = ""; }; - 25F46751099695D5009483BF /* OoliteApp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OoliteApp.m; sourceTree = ""; }; - 25F4676309969672009483BF /* MyOpenGLView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyOpenGLView.m; sourceTree = ""; }; - 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; - 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; - 2B060ED410E42715001EFB22 /* screenbackgrounds.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = screenbackgrounds.plist; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 2B060ED610E42735001EFB22 /* oolite-short-range-chart.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-short-range-chart.png"; sourceTree = ""; }; - 2B060ED710E42735001EFB22 /* oolite-long-range-chart.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-long-range-chart.png"; sourceTree = ""; }; - 2B13C51E105D342D00AF4A7B /* oolite-nova-system.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-nova-system.png"; sourceTree = ""; }; - 2B4CDFEA107B3D8400526C98 /* OOJSManifest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSManifest.h; sourceTree = ""; }; - 2B4CDFEB107B3D8400526C98 /* OOJSManifest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOJSManifest.m; sourceTree = ""; }; - 2B9A1088105D526200EE2AE6 /* javascript-errors.plist */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = "javascript-errors.plist"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.simpleColoring; }; - 4F1F155C1B0FCB11001C1591 /* OOCheckPListSyntaxVerifierStage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCheckPListSyntaxVerifierStage.m; sourceTree = ""; }; - 4F1F155E1B0FCB76001C1591 /* OOCheckPListSyntaxVerifierStage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCheckPListSyntaxVerifierStage.h; sourceTree = ""; }; - 4F1F15601B0FCBFA001C1591 /* OOCheckJSSyntaxVerifierStage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCheckJSSyntaxVerifierStage.m; sourceTree = ""; }; - 4F1F15621B0FCC17001C1591 /* OOCheckJSSyntaxVerifierStage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCheckJSSyntaxVerifierStage.h; sourceTree = ""; }; - B33A44EF199E6745000B45AE /* OOOpenGLMatrixManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOOpenGLMatrixManager.h; sourceTree = ""; }; - B33A44F0199E6745000B45AE /* OOOpenGLMatrixManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOOpenGLMatrixManager.m; sourceTree = ""; }; - B3460D4315285BDE002592D0 /* oolite-default-planet.fragment */ = {isa = PBXFileReference; explicitFileType = sourcecode.glsl; fileEncoding = 4; path = "oolite-default-planet.fragment"; sourceTree = ""; }; - B3460D4415285BDE002592D0 /* oolite-default-planet.vertex */ = {isa = PBXFileReference; explicitFileType = sourcecode.glsl; fileEncoding = 4; path = "oolite-default-planet.vertex"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.glsl; }; - B3A963FD165D7FB5001BB5C1 /* oolite-laser-blur.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-laser-blur.png"; sourceTree = ""; }; - B3A963FE165D7FB5001BB5C1 /* oolite-laser-blur2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-laser-blur2.png"; sourceTree = ""; }; - B3A96403165EE124001BB5C1 /* oolite-exhaust-blur.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "oolite-exhaust-blur.png"; sourceTree = ""; }; - B3B46C851A0D053D00D6C39B /* OOSystemDescriptionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOSystemDescriptionManager.h; sourceTree = ""; }; - B3B46C861A0D053D00D6C39B /* OOSystemDescriptionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOSystemDescriptionManager.m; sourceTree = ""; }; - B3EC10B6155C154000778240 /* OOLegalStatusReason.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OOLegalStatusReason.tbl; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 0865431B06B8447D000CA0AB /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 1AA0861618257A11007CCAEB /* OpenAL.framework in Frameworks */, - 0878FD30086EF845004CB752 /* Carbon.framework in Frameworks */, - 0865431C06B8447D000CA0AB /* Cocoa.framework in Frameworks */, - 0865431D06B8447D000CA0AB /* OpenGL.framework in Frameworks */, - 1A472917096B5454000E78D8 /* CoreAudio.framework in Frameworks */, - 1A472921096B5468000E78D8 /* AudioToolbox.framework in Frameworks */, - 1A472922096B5468000E78D8 /* AudioUnit.framework in Frameworks */, - 1A71E8790BCE8EB100CD5C13 /* libz.dylib in Frameworks */, - 1AB7761012CA2EE0001478BB /* libjs_for_oolite.a in Frameworks */, - 1AE3455712CB77AE00FD8C62 /* libogg_for_oolite.a in Frameworks */, - 1AE3455812CB77B000FD8C62 /* libvorbis_for_oolite.a in Frameworks */, - 1AEA229E12CBD18600EC0F43 /* CoreServices.framework in Frameworks */, - 1A27965012CCC09A00C9E94D /* libnspr4_for_oolite.a in Frameworks */, - 1A78B5DA12D74CFF00D42EE7 /* libpng_for_oolite.a in Frameworks */, - 1AE8837412EF91560075814F /* Sparkle.framework in Frameworks */, - 1A033F91132687DC006F9DB7 /* Quartz.framework in Frameworks */, - 1A54125114B892A200B8A4BE /* IOKit.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { - isa = PBXGroup; - children = ( - 1AEA229D12CBD18600EC0F43 /* CoreServices.framework */, - 1A033F90132687DC006F9DB7 /* Quartz.framework */, - 1AE8837312EF91560075814F /* Sparkle.framework */, - 0878FD2F086EF845004CB752 /* Carbon.framework */, - 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, - 06AFA01500A58FB77F000001 /* OpenGL.framework */, - 1A472916096B5454000E78D8 /* CoreAudio.framework */, - 1A47291F096B5468000E78D8 /* AudioToolbox.framework */, - 1A472920096B5468000E78D8 /* AudioUnit.framework */, - 1A54125014B892A200B8A4BE /* IOKit.framework */, - ); - name = "Linked Frameworks"; - sourceTree = ""; - }; - 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { - isa = PBXGroup; - children = ( - 25CD0C4D09B4F5A70060106D /* Growl.framework */, - 29B97325FDCFA39411CA2CEA /* Foundation.framework */, - 29B97324FDCFA39411CA2CEA /* AppKit.framework */, - ); - name = "Other Frameworks"; - sourceTree = ""; - }; - 19C28FACFE9D520D11CA2CBB /* Products */ = { - isa = PBXGroup; - children = ( - 0865432206B8447D000CA0AB /* Oolite.app */, - ); - name = Products; - sourceTree = ""; - }; - 1A01BCE011C569DF0011197F /* Products */ = { - isa = PBXGroup; - children = ( - 1A01BCE711C569DF0011197F /* Oolite.docktileplugin */, - ); - name = Products; - sourceTree = ""; - }; - 1A1BB8A01767DD3500050283 /* Products */ = { - isa = PBXGroup; - children = ( - 1A1BB8A41767DD3500050283 /* OoliteUnitTests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - 1A2314300B9C667F00EF0852 /* Resources */ = { - isa = PBXGroup; - children = ( - 1AC0E9380B974D8700C46994 /* Documentation */, - 25F3E8BC09950088002F25FD /* Info-Oolite.plist */, - 25F3E8A40994FE65002F25FD /* oolite-document.icns */, - 25F3E8A50994FE65002F25FD /* oolite-expansion-document.icns */, - 25F3E8A60994FE65002F25FD /* oolite-icon.icns */, - 1A2317900B9D022400EF0852 /* AIs */, - 1A2316DD0B9CFAD700EF0852 /* Config */, - 1A23154D0B9C778400EF0852 /* Images */, - 1A2318A50B9D02A900EF0852 /* Models */, - 1A2319730B9D02F900EF0852 /* Music */, - 1A34912C0BC25EBC00802DA7 /* Scripts */, - 1A2F63940C5CC737003872C8 /* Schemata */, - 1A6514F90CCC9D670054D01B /* Shaders */, - 1A2319910B9D031D00EF0852 /* Sounds */, - 1A23181D0B9D026D00EF0852 /* Textures */, - 1A504D9014DC964A003E5363 /* Oolite.xib */, - 25F3E8B30994FE9B002F25FD /* InfoPlist.strings */, - 1AE8837F12EF91E80075814F /* SparkleVerificationKey.pem */, - ); - path = Resources; - sourceTree = ""; - }; - 1A23154D0B9C778400EF0852 /* Images */ = { - isa = PBXGroup; - children = ( - 2B060ED610E42735001EFB22 /* oolite-short-range-chart.png */, - 2B060ED710E42735001EFB22 /* oolite-long-range-chart.png */, - 2B13C51E105D342D00AF4A7B /* oolite-nova-system.png */, - 1A23154E0B9C778400EF0852 /* solar.png */, - 1A23154F0B9C778400EF0852 /* splash.png */, - 1A115ED4158CFB4D005842DA /* splash@2x.png */, - 1A2315510B9C778400EF0852 /* trumblebox.png */, - ); - name = Images; - path = Binary/Images; - sourceTree = ""; - }; - 1A2316DD0B9CFAD700EF0852 /* Config */ = { - isa = PBXGroup; - children = ( - 2B060ED410E42715001EFB22 /* screenbackgrounds.plist */, - 2B9A1088105D526200EE2AE6 /* javascript-errors.plist */, - 1ABC04260EF872B7003B740A /* crosshairs.plist */, - 1AD0C32F0C463FCB0070BD23 /* autoAImap.plist */, - 1A2316DE0B9CFAD700EF0852 /* characters.plist */, - 1A2316E00B9CFAD700EF0852 /* customsounds.plist */, - 1A2316E10B9CFAD700EF0852 /* demoships.plist */, - 1A4501E10DBF699A00815C04 /* descriptions.plist */, - 1A2316E30B9CFAD700EF0852 /* equipment.plist */, - 1AEB48D1119D51BD007BD514 /* gpu-settings.plist */, - 1A2316E40B9CFAD700EF0852 /* hud-small.plist */, - 1A2316E50B9CFAD700EF0852 /* hud.plist */, - 1A2316E70B9CFAD700EF0852 /* keyconfig.plist */, - 1A2316E80B9CFAD700EF0852 /* logcontrol.plist */, - 1A9533890C02089E004EBB58 /* material-defaults.plist */, - 1A2316E90B9CFAD700EF0852 /* missiontext.plist */, - 1A3591810C1C382700E52220 /* nebulatextures.plist */, - 1AC5452C0D4D298E00C90E5B /* oolite-font.plist */, - 1AC973F90C9847850010C42B /* pirate-victim-roles.plist */, - 1A95338A0C02089E004EBB58 /* planetinfo.plist */, - 1A86D4EB1825852C00000F67 /* role-categories.plist */, - 1A7C27C814FA709500F2D2A8 /* shader-uniform-bindings.plist */, - 1A2316EB0B9CFAD700EF0852 /* shipdata.plist */, - 1A2123261051892500530CDE /* shipdata-overrides.plist */, - 1A2316EC0B9CFAD700EF0852 /* shipyard.plist */, - 1A2316ED0B9CFAD700EF0852 /* speech_pronunciation_guide.plist */, - 1A3591820C1C382700E52220 /* startextures.plist */, - 1A4F918319CEDE5300E18B65 /* trade-goods.plist */, - 1A3491290BC25EAA00802DA7 /* world-scripts.plist */, - 1AAF56590F1A27D900A2F2E6 /* whitelist.plist */, - ); - path = Config; - sourceTree = ""; - }; - 1A2317900B9D022400EF0852 /* AIs */ = { - isa = PBXGroup; - children = ( - 1A7E3A07180AD04000576095 /* oolite-assassinAI.js */, - 1A7E3A08180AD04000576095 /* oolite-bountyHunterAI.js */, - 1A7E3A09180AD04000576095 /* oolite-bountyHunterLeaderAI.js */, - 1A7E3A0A180AD04000576095 /* oolite-constrictorAI.js */, - 1A7E3A0B180AD04000576095 /* oolite-defenseShipAI.js */, - 1A7E3A0C180AD04000576095 /* oolite-escortAI.js */, - 1A7E3A0D180AD04100576095 /* oolite-missileAI.js */, - 1A7E3A0E180AD04100576095 /* oolite-nullAI.js */, - 1A7E3A0F180AD04100576095 /* oolite-pirateAI.js */, - 1A7E3A10180AD04100576095 /* oolite-pirateFighterAI.js */, - 1A7E3A11180AD04100576095 /* oolite-pirateFreighterAI.js */, - 1A7E3A12180AD04100576095 /* oolite-pirateInterceptorAI.js */, - 1A7E3A13180AD04100576095 /* oolite-policeAI.js */, - 1A7E3A14180AD04100576095 /* oolite-qbombAI.js */, - 1A7E3A15180AD04100576095 /* oolite-rockHermitAI.js */, - 1A7E3A16180AD04100576095 /* oolite-scavengerAI.js */, - 1A7E3A17180AD04100576095 /* oolite-shuttleAI.js */, - 1A7E3A18180AD04100576095 /* oolite-stationAI.js */, - 1A7E3A19180AD04100576095 /* oolite-thargletAI.js */, - 1A7E3A1A180AD04100576095 /* oolite-thargoidAI.js */, - 1A7E3A1B180AD04100576095 /* oolite-traderAI.js */, - 1A7E3A1C180AD04100576095 /* oolite-traderOpportunistAI.js */, - 1A06F3141196FB6F00AFA5B4 /* oolite-player-AI.plist */, - 1A572FE40D84B6A3003D4A26 /* oolite-constrictor-AI.plist */, - 1A2317910B9D022400EF0852 /* buoyAI.plist */, - 1A2317920B9D022500EF0852 /* collectLootAI.plist */, - 1A2317930B9D022500EF0852 /* dockingAI.plist */, - 1A2317940B9D022500EF0852 /* dumbAI.plist */, - 1A2317950B9D022500EF0852 /* enteringPirateAI.plist */, - 1A2317960B9D022500EF0852 /* enteringTraderAI.plist */, - 1A2317970B9D022500EF0852 /* escortAI.plist */, - 1A2317980B9D022500EF0852 /* exitingTraderAI.plist */, - 1A2317990B9D022500EF0852 /* fallingShuttleAI.plist */, - 1AC83175155534A30032448F /* fleeQMineAI.plist */, - 1A23179A0B9D022500EF0852 /* fttAI.plist */, - 1A23179B0B9D022500EF0852 /* gotoWaypointAI.plist */, - 1A23179C0B9D022500EF0852 /* hardMissileAI.plist */, - 1A23179D0B9D022500EF0852 /* homeAI.plist */, - 1A23179E0B9D022500EF0852 /* interceptAI.plist */, - 1A23179F0B9D022500EF0852 /* minerAI.plist */, - 1A2317A00B9D022500EF0852 /* missileAI.plist */, - 1A2317A10B9D022500EF0852 /* nullAI.plist */, - 1A2317A20B9D022500EF0852 /* pirateAI.plist */, - 1A2317A30B9D022500EF0852 /* planetPatrolAI.plist */, - 1A2317A40B9D022500EF0852 /* policeInterceptAI.plist */, - 1A2317A50B9D022500EF0852 /* receiveDockingAI.plist */, - 1AC83177155534B00032448F /* respondQMineAI.plist */, - 1A2317A60B9D022500EF0852 /* risingShuttleAI.plist */, - 1A2317A70B9D022500EF0852 /* rockHermitAI.plist */, - 1A2317A80B9D022500EF0852 /* route1patrolAI.plist */, - 1A2317A90B9D022500EF0852 /* route1traderAI.plist */, - 1A2317AA0B9D022500EF0852 /* route2patrolAI.plist */, - 1A2317AB0B9D022500EF0852 /* route2sunskimAI.plist */, - 1A2317AC0B9D022500EF0852 /* scavengerAI.plist */, - 1A2317AE0B9D022500EF0852 /* stationAI.plist */, - 1A2317AF0B9D022500EF0852 /* sunSkimExitAI.plist */, - 1A2317B00B9D022500EF0852 /* thargletAI.plist */, - 1A2317B10B9D022500EF0852 /* thargoidAI.plist */, - 1A2317B20B9D022500EF0852 /* timebombAI.plist */, - 1A644E211052A9FD00833636 /* traderInterceptAI.plist */, - 1A94E4FB0F348D4300F1B5D9 /* delayedReactToAttackAI.plist */, - ); - path = AIs; - sourceTree = ""; - }; - 1A23181D0B9D026D00EF0852 /* Textures */ = { - isa = PBXGroup; - children = ( - 1A21149D0DEA98D100444CEB /* oolite-ball-turret.png */, - 1AE834C90D9598C10097CB8A /* oolite-barrel-specular.png */, - B3A96403165EE124001BB5C1 /* oolite-exhaust-blur.png */, - 1AC544F90D4D217900C90E5B /* oolite-font.png */, - B3A963FD165D7FB5001BB5C1 /* oolite-laser-blur.png */, - B3A963FE165D7FB5001BB5C1 /* oolite-laser-blur2.png */, - 1A3591690C1C375400E52220 /* oolite-nebula-1.png */, - 1A35916C0C1C375400E52220 /* oolite-nebula-2.png */, - 1A35916B0C1C375400E52220 /* oolite-nebula-3.png */, - 1A0365990D7CA0EE00B5F46F /* oolite-nebula-4.png */, - 1A817C16106D123F00AA2F97 /* oolite-particle-blur.png */, - 1A7E3A33180AD08F00576095 /* oolite-particle-cloud.png */, - 1A7E3A34180AD08F00576095 /* oolite-particle-cloud2.png */, - 1A6C6D5C1652E038005D1D3B /* oolite-particle-dust.png */, - 1A817DBE106D441200AA2F97 /* oolite-particle-flash.png */, - 1ACE208E0D805F78009F6957 /* oolite-scarred-metal-specular.png */, - 1A35916A0C1C375400E52220 /* oolite-star-1.png */, - 1A00248B1657B56E00EAE045 /* oolite-star-1-alt.png */, - 1A00248C1657B56E00EAE045 /* oolite-star-1-large.png */, - 1A00248D1657B56E00EAE045 /* oolite-star-2-large.png */, - 1A00248E1657B56E00EAE045 /* oolite-star-2.png */, - 1A00248F1657B56E00EAE045 /* oolite-star-3.png */, - 1A0024901657B56E00EAE045 /* oolite-star-4.png */, - 1A0024911657B56E00EAE045 /* oolite-star-5.png */, - 1A0024921657B56E00EAE045 /* oolite-star-6.png */, - 1A0024931657B56E00EAE045 /* oolite-star-7.png */, - 1A0024941657B56E00EAE045 /* oolite-star-8.png */, - 1A0024951657B56E00EAE045 /* oolite-star-9.png */, - 1A2318590B9D026D00EF0852 /* trumblekit.png */, - 1A89CBF9182533E000A4E455 /* Griffified */, - 1A89CC7E1825342600A4E455 /* Legacy */, - ); - name = Textures; - path = Binary/Textures; - sourceTree = ""; - }; - 1A2318A50B9D02A900EF0852 /* Models */ = { - isa = PBXGroup; - children = ( - 1A89CBA0182533A900A4E455 /* Griffified */, - 1A89CB9A1825339600A4E455 /* Legacy */, - 1A21149A0DEA980800444CEB /* oolite-ball-turret.dat */, - 1A1502F50C1201C30032F3E8 /* oolite-unknown-ship.dat */, - ); - name = Models; - path = Binary/Models; - sourceTree = ""; - }; - 1A2319730B9D02F900EF0852 /* Music */ = { - isa = PBXGroup; - children = ( - 1A2319740B9D02F900EF0852 /* BlueDanube.ogg */, - 1A2319750B9D02F900EF0852 /* OoliteTheme.ogg */, - ); - name = Music; - path = Binary/Music; - sourceTree = ""; - }; - 1A2319910B9D031D00EF0852 /* Sounds */ = { - isa = PBXGroup; - children = ( - 1A2319920B9D031D00EF0852 /* afterburner1.ogg */, - 1A2319940B9D031D00EF0852 /* beep.ogg */, - 1A2319950B9D031D00EF0852 /* bigbang.ogg */, - 1A2319960B9D031D00EF0852 /* boop.ogg */, - 1A2319970B9D031D00EF0852 /* breakpattern.ogg */, - 1A2319980B9D031D00EF0852 /* buy.ogg */, - 1A2319990B9D031D00EF0852 /* ecm.ogg */, - 1A23199A0B9D031D00EF0852 /* guiclick.ogg */, - 1A23199B0B9D031D00EF0852 /* hit.ogg */, - 1A23199C0B9D031D00EF0852 /* hullbang.ogg */, - 1A23199D0B9D031D00EF0852 /* laser.ogg */, - 1A23199E0B9D031D00EF0852 /* laserhits.ogg */, - 1A23199F0B9D031D00EF0852 /* missile.ogg */, - 1A2319A00B9D031D00EF0852 /* scoop.ogg */, - 1A2319A10B9D031D00EF0852 /* sell.ogg */, - 1A2319A20B9D031D00EF0852 /* trumble.ogg */, - 1A2319A30B9D031D00EF0852 /* trumblesqueal.ogg */, - 1A2319A40B9D031D00EF0852 /* warning.ogg */, - 1A2319A50B9D031D00EF0852 /* witchabort.ogg */, - ); - name = Sounds; - path = Binary/Sounds; - sourceTree = ""; - }; - 1A26D1090BCFA8D40073F257 /* PlayerEntity */ = { - isa = PBXGroup; - children = ( - 1A26D08E0BCF9CF70073F257 /* PlayerEntity.h */, - 1A26D08D0BCF9CF70073F257 /* PlayerEntity.m */, - 1A26D0980BCF9CF70073F257 /* PlayerEntityContracts.h */, - 1A26D09B0BCF9CF70073F257 /* PlayerEntityContracts.m */, - 1A26D0A40BCF9CF70073F257 /* PlayerEntityControls.h */, - 1A26D09C0BCF9CF70073F257 /* PlayerEntityControls.m */, - 1A26D0AA0BCF9CF80073F257 /* PlayerEntityLegacyScriptEngine.h */, - 1A26D0880BCF9CF70073F257 /* PlayerEntityLegacyScriptEngine.m */, - 1A26D08C0BCF9CF70073F257 /* PlayerEntityLoadSave.m */, - 1A26D0AB0BCF9CF80073F257 /* PlayerEntityLoadSave.h */, - 1A26D0910BCF9CF70073F257 /* PlayerEntityScriptMethods.h */, - 1A26D08B0BCF9CF70073F257 /* PlayerEntityScriptMethods.m */, - 1A26D0A60BCF9CF70073F257 /* PlayerEntitySound.h */, - 1A26D0A50BCF9CF70073F257 /* PlayerEntitySound.m */, - 1A26D09F0BCF9CF70073F257 /* PlayerEntityStickMapper.h */, - 1A26D09E0BCF9CF70073F257 /* PlayerEntityStickMapper.m */, - 1A26D0F20BCF9CF70073F257 /* PlayerEntityKeyMapper.h */, - 1A26D0F10BCF9CF70073F257 /* PlayerEntityKeyMapper.m */, - 1A69FFEC18A64C320062EAC8 /* PlayerEntityStickProfile.h */, - 1A69FFED18A64C320062EAC8 /* PlayerEntityStickProfile.m */, - ); - name = PlayerEntity; - sourceTree = ""; - }; - 1A28AA0F0D55434800BC0CE4 /* Sound */ = { - isa = PBXGroup; - children = ( - 1A28AA140D55438200BC0CE4 /* OOJSSound.h */, - 1A28AA150D55438200BC0CE4 /* OOJSSound.m */, - 1AB784F70D554F7B00517983 /* OOJSSoundSource.h */, - 1AB784F80D554F7B00517983 /* OOJSSoundSource.m */, - ); - name = Sound; - sourceTree = ""; - }; - 1A28AA130D55435300BC0CE4 /* Global */ = { - isa = PBXGroup; - children = ( - 1A7376BC0C64AE330097AC37 /* OOJSSystem.h */, - 1A7376BD0C64AE330097AC37 /* OOJSSystem.m */, - 1A9322950DF53C33003FD306 /* OOJSSystemInfo.h */, - 1A9322960DF53C33003FD306 /* OOJSSystemInfo.m */, - 1A4FB3330C8DC86800DC8E1F /* OOJSOolite.h */, - 1A4FB3340C8DC86800DC8E1F /* OOJSOolite.m */, - 1ACEA6BD0C91DA3E00C7CE97 /* OOJSGlobal.h */, - 1ACEA6BE0C91DA3E00C7CE97 /* OOJSGlobal.m */, - 1ACEA7260C91DF2800C7CE97 /* OOJSMissionVariables.h */, - 1ACEA7270C91DF2800C7CE97 /* OOJSMissionVariables.m */, - 1ACEA7A80C91E32800C7CE97 /* OOJSMission.h */, - 1ACEA7A90C91E32800C7CE97 /* OOJSMission.m */, - 1A6B25EC0C9C2745000717CF /* OOJSClock.h */, - 1A6B25ED0C9C2746000717CF /* OOJSClock.m */, - 1AA82C810CC10E3D0023B797 /* OOJSWorldScripts.h */, - 1AA82C820CC10E3D0023B797 /* OOJSWorldScripts.m */, - 1A0DA2EC0D71D280009B0970 /* OOJSSpecialFunctions.h */, - 1A0DA2ED0D71D280009B0970 /* OOJSSpecialFunctions.m */, - 1A1280F612ECA4ED00B65D9F /* OOJSFont.h */, - 1A1280F712ECA4ED00B65D9F /* OOJSFont.m */, - ); - name = Global; - sourceTree = ""; - }; - 1A2A1B020BD2768300152975 /* Graphics */ = { - isa = PBXGroup; - children = ( - 25F3E63A0994F08A002F25FD /* OOOpenGL.h */, - 1A5AA3220C0098AF0029C78A /* OOOpenGL.m */, - 1AD3C338163A92F600469C4D /* OOOpenGLStateManager.m */, - 1A2A1DEA0BD2A28E00152975 /* OOMacroOpenGL.h */, - 1A43234A0BCFC9BB00F65914 /* OOOpenGLExtensionManager.h */, - 1A43234B0BCFC9BB00F65914 /* OOOpenGLExtensionManager.m */, - B33A44EF199E6745000B45AE /* OOOpenGLMatrixManager.h */, - B33A44F0199E6745000B45AE /* OOOpenGLMatrixManager.m */, - 1A127F4112EC6A4400B65D9F /* OOTextureSprite.h */, - 1A127F4212EC6A4400B65D9F /* OOTextureSprite.m */, - 1AB9AE89107F459B00B6F3CE /* OOPolygonSprite.h */, - 1AB9AE8A107F459B00B6F3CE /* OOPolygonSprite.m */, - 1AED2D0A0C04586C004A1118 /* OOGraphicsResetManager.h */, - 1AED2D0B0C04586C004A1118 /* OOGraphicsResetManager.m */, - 1ADC3F850BFA1388000E0F89 /* Drawables */, - 1A71DDD30BCC0EEF00CD5C13 /* Materials */, - 1A15049C0C12CA070032F3E8 /* OOProbabilisticTextureManager.h */, - 1A15049D0C12CA070032F3E8 /* OOProbabilisticTextureManager.m */, - 1AC775E00C2DD4E900ECFF3B /* OODebugGLDrawing.h */, - 1AC775E10C2DD4E900ECFF3B /* OODebugGLDrawing.m */, - 1ABC03EB0EF86110003B740A /* OOCrosshairs.h */, - 1ABC03EC0EF86110003B740A /* OOCrosshairs.m */, - 1ACB1CEF118DBC65007B9A1F /* OOEnvironmentCubeMap.h */, - 1ACB1CF0118DBC65007B9A1F /* OOEnvironmentCubeMap.m */, - ); - name = Graphics; - sourceTree = ""; - }; - 1A2DA2A00CB4CB3500DE6823 /* Debug */ = { - isa = PBXGroup; - children = ( - 1A87063D1172029F003FDD2A /* OODebugFlags.h */, - 1A2DA3ED0CB4E84900DE6823 /* OODebugSupport.h */, - 1A2DA3EC0CB4E84900DE6823 /* OODebugSupport.m */, - 1A4F917F19CEDDFB00E18B65 /* OODebugStandards.h */, - 1A4F917019CEDD1900E18B65 /* OODebugStandards.m */, - 1A2DA3540CB4D10800DE6823 /* OODebuggerInterface.h */, - 1A2DA34A0CB4D0D800DE6823 /* OODebugMonitor.h */, - 1A2DA34C0CB4D0D800DE6823 /* OODebugMonitor.m */, - 1A2DA3490CB4D0D800DE6823 /* OOJSConsole.h */, - 1A2DA34B0CB4D0D800DE6823 /* OOJSConsole.m */, - 1A2DA2A40CB4CB5C00DE6823 /* OODebugTCPConsoleProtocol.h */, - 1A2DA2A70CB4CB5C00DE6823 /* OODebugTCPConsoleClient.h */, - 1A2DA2A50CB4CB5C00DE6823 /* OODebugTCPConsoleClient.m */, - 1A2DA2A90CB4CB5C00DE6823 /* OOTCPStreamDecoder.h */, - 1A2DA2A60CB4CB5C00DE6823 /* OOTCPStreamDecoder.c */, - 1A2DA2A80CB4CB5C00DE6823 /* OOTCPStreamDecoderAbstractionLayer.h */, - 1A2DA2AA0CB4CB5C00DE6823 /* OOTCPStreamDecoderAbstractionLayer.m */, - ); - path = Debug; - sourceTree = ""; - }; - 1A2F63940C5CC737003872C8 /* Schemata */ = { - isa = PBXGroup; - children = ( - 1A2F63950C5CC737003872C8 /* demoshipsSchema.plist */, - 1A2F63960C5CC737003872C8 /* hudSchema.plist */, - 1A2F63980C5CC737003872C8 /* shipdataEntrySchema.plist */, - 1A2F63990C5CC737003872C8 /* shipyardSchema.plist */, - ); - path = Schemata; - sourceTree = SOURCE_ROOT; - }; - 1A34912C0BC25EBC00802DA7 /* Scripts */ = { - isa = PBXGroup; - children = ( - 1A89CC7F1825349A00A4E455 /* oolite-cloaking-device-equipment.js */, - 1A572FBC0D84B640003D4A26 /* oolite-cloaking-device-mission.js */, - 1A572FC00D84B640003D4A26 /* oolite-cloaking-device-pod.js */, - 1A572FBF0D84B640003D4A26 /* oolite-cloaking-device-target-ship.js */, - 1AB23F06165A5A7700642977 /* oolite-conditions.js */, - 1A572FBD0D84B640003D4A26 /* oolite-constrictor.js */, - 1A572FBE0D84B640003D4A26 /* oolite-constrictor-hunt-mission.js */, - 1AE45E5412EB176B00B570E1 /* oolite-constrictor-pilot.js */, - 1A02B4C01643DF6B0013749D /* oolite-contracts-cargo.js */, - 1A02B4C11643DF6B0013749D /* oolite-contracts-helpers.js */, - 1A38E9E51603C7ED00EE19F1 /* oolite-contracts-parcels.js */, - 1A02B4C21643DF6B0013749D /* oolite-contracts-passengers.js */, - 1A5ABE6A15FBC833006C97DC /* oolite-default-effect-script.js */, - 1A01BC6F11C5515B0011197F /* oolite-default-player-script.js */, - 1A572FBB0D84B640003D4A26 /* oolite-default-ship-script.js */, - 1A572FC10D84B640003D4A26 /* oolite-global-prefix.js */, - 1AE45E5512EB177300B570E1 /* oolite-locale-functions.js */, - 1A572FB80D84B640003D4A26 /* oolite-nova-mission.js */, - 1A59FF4117CA26D6000BF0E0 /* oolite-populator.js */, - 1A89CC81182534B400A4E455 /* oolite-primable-equipment-manager.js */, - 1A7E3A37180AD0DE00576095 /* oolite-priorityai.js */, - 1AAADFBD17CB25A30032C68B /* oolite-registership.js */, - 1A572FB90D84B640003D4A26 /* oolite-thargoid-plans-mission.js */, - 1A572FC20D84B640003D4A26 /* oolite-thargoid-warship.js */, - 1A572FBA0D84B640003D4A26 /* oolite-trumbles-mission.js */, - ); - path = Scripts; - sourceTree = ""; - }; - 1A35251312E1F89700244C9D /* Tables */ = { - isa = PBXGroup; - children = ( - 1A97D68512FD83BD0009D74A /* OOShipDamageType.tbl */, - 1A35256212E1FC0500244C9D /* OOBehaviour.tbl */, - 1A972FFC12E6077D001F2406 /* OOCompassMode.tbl */, - 1A35251112E1F89100244C9D /* OOEntityStatus.tbl */, - 1A97302012E60F9B001F2406 /* OOGUIScreenID.tbl */, - B3EC10B6155C154000778240 /* OOLegalStatusReason.tbl */, - 1A97305C12E61427001F2406 /* OOGalacticHyperspaceBehaviour.tbl */, - 1A35256012E1FC0100244C9D /* OOScanClass.tbl */, - 1A85AE4D12EE0ED9000E1FCD /* OOViewID.tbl */, - 1A3091F81637447300C16E8B /* OOOpenGLStates.tbl */, - ); - path = Tables; - sourceTree = ""; - }; - 1A3E018F11C574AC000FF226 /* Products */ = { - isa = PBXGroup; - children = ( - 1A3E019611C574AC000FF226 /* Oolite.mdimporter */, - ); - name = Products; - sourceTree = ""; - }; - 1A43A0D10CB91D3600D0E239 /* Entities */ = { - isa = PBXGroup; - children = ( - 1A2A8D380BC6765F001E00FB /* EntityOOJavaScriptExtensions.h */, - 1A2A8D390BC6765F001E00FB /* EntityOOJavaScriptExtensions.m */, - 1ABA416015ADAB8D00F7E841 /* OOJSDock.h */, - 1ABA416115ADAB8D00F7E841 /* OOJSDock.m */, - 1A2A8C130BC65FFD001E00FB /* OOJSEntity.h */, - 1A2A8C140BC65FFD001E00FB /* OOJSEntity.m */, - 1A92AB6F1846403200C507E3 /* OOJSExhaustPlume.h */, - 1A92AB701846403200C507E3 /* OOJSExhaustPlume.m */, - 1A92AB781846403F00C507E3 /* OOJSFlasher.h */, - 1A92AB791846403F00C507E3 /* OOJSFlasher.m */, - 1A43A0CA0CB91D2C00D0E239 /* OOJSPlanet.h */, - 1A43A0CB0CB91D2C00D0E239 /* OOJSPlanet.m */, - 1A54AB510E3E17A0001EB817 /* OOJSPlayerShip.h */, - 1A54AB520E3E17A0001EB817 /* OOJSPlayerShip.m */, - 1A3ACFE90C5FF33A00EC50A7 /* OOJSShip.h */, - 1A3ACFEA0C5FF33A00EC50A7 /* OOJSShip.m */, - 1A73712B0C623DAE0097AC37 /* OOJSStation.h */, - 1A73712C0C623DAE0097AC37 /* OOJSStation.m */, - 1A7C75990CC39D11005D0AA2 /* OOJSSun.h */, - 1A7C75980CC39D11005D0AA2 /* OOJSSun.m */, - 1A72F87015E5658E00281337 /* OOJSVisualEffect.h */, - 1A72F87115E5658E00281337 /* OOJSVisualEffect.m */, - 1A1F6D14180AC371002AD52E /* OOJSWaypoint.h */, - 1A1F6D15180AC371002AD52E /* OOJSWaypoint.m */, - 1AA59C6A1780396C007C7373 /* OOJSWormhole.h */, - 1AA59C6B1780396C007C7373 /* OOJSWormhole.m */, - ); - name = Entities; - sourceTree = ""; - }; - 1A5BF2710916D45B00BF238F /* External bundles */ = { - isa = PBXGroup; - children = ( - 1A0519340C7CCAC900BA5CCA /* DebugBundle.xcodeproj */, - 1A01BCDF11C569DF0011197F /* Oolite-docktile.xcodeproj */, - 1A3E018E11C574AC000FF226 /* Oolite-importer.xcodeproj */, - ); - name = "External bundles"; - sourceTree = ""; - }; - 1A5D58811825241800C779AE /* MiniZip */ = { - isa = PBXGroup; - children = ( - 1A5D58821825241800C779AE /* ioapi.c */, - 1A5D58831825241800C779AE /* ioapi.h */, - 1A5D58841825241800C779AE /* MiniZip64_info.txt */, - 1A5D58851825241800C779AE /* unzip.c */, - 1A5D58861825241800C779AE /* unzip.h */, - ); - name = MiniZip; - path = src/Core/MiniZip; - sourceTree = ""; - }; - 1A5DBA980BC000DC00D57389 /* Scripting */ = { - isa = PBXGroup; - children = ( - 1A5DBAA10BC000DC00D57389 /* OOScript.h */, - 1A5DBAA20BC000DC00D57389 /* OOScript.m */, - 1A6B1EEE0C9AA5C6000717CF /* OOScriptTimer.h */, - 1A6B1EEF0C9AA5C6000717CF /* OOScriptTimer.m */, - 1A5DBAB50BC000E700D57389 /* JavaScript */, - 1A5DBA9E0BC000DC00D57389 /* OOPListScript.h */, - 1A5DBA9F0BC000DC00D57389 /* OOPListScript.m */, - 1A3C67F30F1C90BF0000D45B /* OOLegacyScriptWhitelist.h */, - 1A3C67F40F1C90BF0000D45B /* OOLegacyScriptWhitelist.m */, - ); - path = Scripting; - sourceTree = ""; - }; - 1A5DBAB50BC000E700D57389 /* JavaScript */ = { - isa = PBXGroup; - children = ( - 1A5DBA9A0BC000DC00D57389 /* OOJavaScriptEngine.h */, - 1A5DBA9B0BC000DC00D57389 /* OOJavaScriptEngine.m */, - 1AEF57D212E51DDB00546444 /* OOJSEngineNativeWrappers.h */, - 1AC0F29D12E1DADC00ECBBB0 /* OOJSEngineDebuggerHelpers.m */, - 1A11C2AF11CFC35000F3EE77 /* OOJSEngineTimeManagement.h */, - 1A11C2B011CFC35000F3EE77 /* OOJSEngineTimeManagement.m */, - 1A85AD0612EDCAC7000E1FCD /* OOJSPropID.h */, - 1A35257012E1FFA900244C9D /* OOConstToJSString.h */, - 1A35257112E1FFA900244C9D /* OOConstToJSString.m */, - 1ABC47FC0F155F0500B977AD /* OOJSFunction.h */, - 1ABC47FD0F155F0500B977AD /* OOJSFunction.m */, - 1A5DBA9C0BC000DC00D57389 /* OOJSScript.h */, - 1A5DBA9D0BC000DC00D57389 /* OOJSScript.m */, - 2B4CDFEA107B3D8400526C98 /* OOJSManifest.h */, - 2B4CDFEB107B3D8400526C98 /* OOJSManifest.m */, - 1A736BD10C61E9370097AC37 /* OOJSPlayer.h */, - 1A736BD20C61E9370097AC37 /* OOJSPlayer.m */, - 1A43A0D10CB91D3600D0E239 /* Entities */, - 1A28AA0F0D55434800BC0CE4 /* Sound */, - 1A28AA130D55435300BC0CE4 /* Global */, - 1A736C7D0C61FD220097AC37 /* OOJSCall.h */, - 1A736C7E0C61FD220097AC37 /* OOJSCall.m */, - 1A3AFF1D0BC4462200B5E2D9 /* OOJSVector.h */, - 1A3AFF1E0BC4462200B5E2D9 /* OOJSVector.m */, - 1A2A91500BC6BC66001E00FB /* OOJSQuaternion.h */, - 1A2A91510BC6BC66001E00FB /* OOJSQuaternion.m */, - 1A6B228B0C9B40D4000717CF /* OOJSTimer.h */, - 1A6B228C0C9B40D4000717CF /* OOJSTimer.m */, - 1AC27A0D0EA7E9940054E5F0 /* OOJSEquipmentInfo.h */, - 1AC27A0E0EA7E9940054E5F0 /* OOJSEquipmentInfo.m */, - 1A11F8490F35F60C001C886C /* OOJSShipGroup.h */, - 1A11F8480F35F60C001C886C /* OOJSShipGroup.m */, - 1A0942C712D7C011003B6273 /* OOJSFrameCallbacks.h */, - 1A0942C812D7C011003B6273 /* OOJSFrameCallbacks.m */, - 1A38E9E11603C7A500EE19F1 /* OOJSInterfaceDefinition.h */, - 1A38E9E21603C7A500EE19F1 /* OOJSInterfaceDefinition.m */, - 1A38E9E51603C7A500EE19F1 /* OOJSGuiScreenKeyDefinition.h */, - 1A38E9E61603C7A500EE19F1 /* OOJSGuiScreenKeyDefinition.m */, - 1AD8522C17947C9400CBE743 /* OOJSPopulatorDefinition.h */, - 1AD8522D17947C9500CBE743 /* OOJSPopulatorDefinition.m */, - ); - name = JavaScript; - sourceTree = ""; - }; - 1A6514F90CCC9D670054D01B /* Shaders */ = { - isa = PBXGroup; - children = ( - B3460D4315285BDE002592D0 /* oolite-default-planet.fragment */, - B3460D4415285BDE002592D0 /* oolite-default-planet.vertex */, - 1A65150D0CCC9E220054D01B /* oolite-standard-vertex.vertex */, - 1A02FD340EE048E8008F9B09 /* oolite-tangent-space-vertex.vertex */, - 1A65150E0CCC9E220054D01B /* oolite-default-shader.fragment */, - 1A0C3EDD1193306B007935E5 /* oolite-dust.vertex */, - 1A0C3EEA11933272007935E5 /* oolite-dust.fragment */, - ); - path = Shaders; - sourceTree = ""; - }; - 1A71DDD30BCC0EEF00CD5C13 /* Materials */ = { - isa = PBXGroup; - children = ( - 1A26D0D30BCF9D0D0073F257 /* OOMaterial.h */, - 1A26D0D20BCF9D0D0073F257 /* OOMaterial.m */, - 1A1F7DA6117B5BDB00332757 /* OOMaterialSpecifier.h */, - 1A1F7DA7117B5BDB00332757 /* OOMaterialSpecifier.m */, - 1A3D034811736EDA005BF5E6 /* OOMaterialConvenienceCreators.h */, - 1A3D034911736EDA005BF5E6 /* OOMaterialConvenienceCreators.m */, - 1A6F665114DF323900695C11 /* OODefaultShaderSynthesizer.h */, - 1A6F665214DF323900695C11 /* OODefaultShaderSynthesizer.m */, - 1ADBA54E0BD0F173008FC99C /* OOBasicMaterial.h */, - 1ADBA54F0BD0F173008FC99C /* OOBasicMaterial.m */, - 1A26D0D00BCF9D0D0073F257 /* OOShaderMaterial.h */, - 1A26D0D10BCF9D0D0073F257 /* OOShaderMaterial.m */, - 1A2A16670BD10B1200152975 /* OOSingleTextureMaterial.h */, - 1A2A16660BD10B1200152975 /* OOSingleTextureMaterial.m */, - 1A3D03131173536C005BF5E6 /* OOMultiTextureMaterial.h */, - 1A3D03141173536C005BF5E6 /* OOMultiTextureMaterial.m */, - 1A71E8610BCE8A6E00CD5C13 /* Shaders */, - 1A71E85D0BCE8A5500CD5C13 /* Textures */, - ); - path = Materials; - sourceTree = ""; - }; - 1A71E85D0BCE8A5500CD5C13 /* Textures */ = { - isa = PBXGroup; - children = ( - 1A26D0E10BCF9D3B0073F257 /* OOTexture.h */, - 1A26D0E00BCF9D3B0073F257 /* OOTexture.m */, - 1ACB1D1B118DCE5A007B9A1F /* OOTextureInternal.h */, - 1ACB1D16118DCBC0007B9A1F /* OOConcreteTexture.h */, - 1ACB1D17118DCBC0007B9A1F /* OOConcreteTexture.m */, - 1A8BB8E80E8311F900122974 /* OONullTexture.h */, - 1A8BB8E90E8311F900122974 /* OONullTexture.m */, - 1A26D0E30BCF9D3B0073F257 /* OOTextureLoader.h */, - 1A26D0E50BCF9D3B0073F257 /* OOTextureLoader.m */, - 1A26D0E40BCF9D3B0073F257 /* OOPNGTextureLoader.h */, - 1A26D0E20BCF9D3B0073F257 /* OOPNGTextureLoader.m */, - 1AA7FE2B10C2F2070058FBED /* OOTextureGenerator.h */, - 1AA7FE2C10C2F2070058FBED /* OOTextureGenerator.m */, - 1AABA83C11B941D1003487D5 /* OOPixMapTextureLoader.h */, - 1AABA83D11B941D1003487D5 /* OOPixMapTextureLoader.m */, - 1AA7FE3210C2F26A0058FBED /* OOPlanetTextureGenerator.h */, - 1AA7FE3310C2F26A0058FBED /* OOPlanetTextureGenerator.m */, - 1A8C97E4117A1A2F00D8AB7E /* OOCombinedEmissionMapGenerator.h */, - 1A8C97E5117A1A2F00D8AB7E /* OOCombinedEmissionMapGenerator.m */, - 1AECE9DF1177959F003986A8 /* OOPixMap.h */, - 1AECE9EE11779910003986A8 /* OOPixMap.m */, - 1A19783C117F81B10060DB56 /* OOPixMapChannelOperations.h */, - 1A19783D117F81B10060DB56 /* OOPixMapChannelOperations.m */, - 1AB6963A191D85F600E4B232 /* OOStandaloneAtmosphereGenerator.h */, - 1AB6963B191D85F600E4B232 /* OOStandaloneAtmosphereGenerator.m */, - 1AB01ABC0BB15AED00F1B949 /* OOTextureScaling.h */, - 1AB01ABD0BB15AED00F1B949 /* OOTextureScaling.m */, - 1A95C03E118A450E002EE302 /* OOConvertCubeMapToLatLong.h */, - 1A95C03F118A450E002EE302 /* OOConvertCubeMapToLatLong.m */, - ); - name = Textures; - sourceTree = ""; - }; - 1A71E8610BCE8A6E00CD5C13 /* Shaders */ = { - isa = PBXGroup; - children = ( - 1A26D0DA0BCF9D1E0073F257 /* OOShaderProgram.h */, - 1A26D0D90BCF9D1E0073F257 /* OOShaderProgram.m */, - 1A26D0D80BCF9D1E0073F257 /* OOShaderUniform.h */, - 1A26D0DB0BCF9D1E0073F257 /* OOShaderUniform.m */, - 1A5E462E0C32DACE008104B4 /* OOShaderUniformMethodType.h */, - 1A5E462D0C32DACE008104B4 /* OOShaderUniformMethodType.m */, - ); - name = Shaders; - sourceTree = ""; - }; - 1A78B5D512D74CF900D42EE7 /* Products */ = { - isa = PBXGroup; - children = ( - 1A78B5D912D74CF900D42EE7 /* libpng_for_oolite.a */, - ); - name = Products; - sourceTree = ""; - }; - 1A7B96800E620CA000322821 /* Audio */ = { - isa = PBXGroup; - children = ( - 1A60AFB50D56093B0070510D /* OOMusicController.h */, - 1A60AFB60D56093B0070510D /* OOMusicController.m */, - 1A71D8A90E5F17410088C456 /* OOSoundSource.h */, - 1A71D8A80E5F17410088C456 /* OOSoundSource.m */, - 1ACBF06F0D82DF9B00CC005F /* OOSoundSourcePool.h */, - 1ACBF0700D82DF9B00CC005F /* OOSoundSourcePool.m */, - 1A7B967E0E620C9E00322821 /* OOSoundInternal.h */, - 1AA085E81825788E007CCAEB /* OpenAL */, - ); - name = Audio; - sourceTree = ""; - }; - 1A7E39FF180AC8B100576095 /* Products */ = { - isa = PBXGroup; - children = ( - 1A7E3A03180AC8B100576095 /* Debug.bundle */, - ); - name = Products; - sourceTree = ""; - }; - 1A817DCA106D44D900AA2F97 /* Particles */ = { - isa = PBXGroup; - children = ( - 1A9438CD17F84C560011F80B /* OOExplosionCloudEntity.h */, - 1A9438CE17F84C560011F80B /* OOExplosionCloudEntity.m */, - 1A817DC1106D443B00AA2F97 /* OOFlashEffectEntity.h */, - 1A817DC2106D443B00AA2F97 /* OOFlashEffectEntity.m */, - 1AE242C31054226900EAA7F2 /* OOFlasherEntity.h */, - 1AE242C41054226900EAA7F2 /* OOFlasherEntity.m */, - 1AE7324E12F75D470045513D /* OOLaserShotEntity.h */, - 1AE7324F12F75D470045513D /* OOLaserShotEntity.m */, - 1AE24371105439B500EAA7F2 /* OOLightParticleEntity.h */, - 1AE24372105439B500EAA7F2 /* OOLightParticleEntity.m */, - 1A4DF35112FDF0410027F43D /* OOParticleSystem.h */, - 1A4DF35212FDF0410027F43D /* OOParticleSystem.m */, - 1A817D9E106D3FF000AA2F97 /* OOPlasmaBurstEntity.h */, - 1A817D9F106D3FF000AA2F97 /* OOPlasmaBurstEntity.m */, - 1A817CFA106D232100AA2F97 /* OOPlasmaShotEntity.h */, - 1A817CFB106D232100AA2F97 /* OOPlasmaShotEntity.m */, - 1A97D77212FDB6610009D74A /* OOQuiriumCascadeEntity.h */, - 1A97D77312FDB6610009D74A /* OOQuiriumCascadeEntity.m */, - 1A4DF25912FDC4420027F43D /* OORingEffectEntity.h */, - 1A4DF25A12FDC4420027F43D /* OORingEffectEntity.m */, - 1A1F2840105AAB7900ADB8C5 /* OOSparkEntity.h */, - 1A1F2841105AAB7900ADB8C5 /* OOSparkEntity.m */, - ); - name = Particles; - sourceTree = ""; - }; - 1A89CB9A1825339600A4E455 /* Legacy */ = { - isa = PBXGroup; - children = ( - 1A2318A60B9D02A900EF0852 /* adder_redux.dat */, - 1A2318A70B9D02A900EF0852 /* alloy.dat */, - 1A2318A80B9D02A900EF0852 /* anaconda_redux.dat */, - 1A2318A90B9D02A900EF0852 /* arcdetail.dat */, - 1A2318AA0B9D02A900EF0852 /* asp_redux.dat */, - 1A2318AB0B9D02A900EF0852 /* asteroid.dat */, - 1A2318AC0B9D02A900EF0852 /* asteroid1.dat */, - 1A2318AD0B9D02A900EF0852 /* barrel.dat */, - 1A2318AE0B9D02A900EF0852 /* boa2_redux.dat */, - 1A2318AF0B9D02A900EF0852 /* boa_redux.dat */, - 1A2318B00B9D02A900EF0852 /* boulder.dat */, - 1A2318B10B9D02A900EF0852 /* boulder1.dat */, - 1A2318B20B9D02A900EF0852 /* buoy.dat */, - 1A2318B30B9D02A900EF0852 /* cobra1_redux.dat */, - 1A2318B60B9D02A900EF0852 /* cobra3_redux.dat */, - 1A2318B80B9D02A900EF0852 /* constrictor_redux.dat */, - 1A2318B90B9D02A900EF0852 /* dock-flat.dat */, - 1A2318BA0B9D02A900EF0852 /* dock.dat */, - 1A2318BB0B9D02A900EF0852 /* escpod_redux.dat */, - 1A2318BD0B9D02A900EF0852 /* ferdelance_redux.dat */, - 1A2318BE0B9D02A900EF0852 /* gecko_redux.dat */, - 1A2318C10B9D02A900EF0852 /* krait_redux.dat */, - 1A2318C20B9D02A900EF0852 /* mamba_redux.dat */, - 1A2318C40B9D02A900EF0852 /* missile.dat */, - 1A2318C50B9D02A900EF0852 /* moray_redux.dat */, - 1A2318C70B9D02A900EF0852 /* new-dodo.dat */, - 1A2318C80B9D02A900EF0852 /* new-icos.dat */, - 1A2318C90B9D02A900EF0852 /* new-rock.dat */, - 1A2318CA0B9D02A900EF0852 /* new_coriolis.dat */, - 1A2318CB0B9D02A900EF0852 /* python_redux.dat */, - 1A2318CE0B9D02AA00EF0852 /* qbomb.dat */, - 1A2318CF0B9D02AA00EF0852 /* ring.dat */, - 1A2318D00B9D02AA00EF0852 /* rock-box.dat */, - 1A2318D10B9D02AA00EF0852 /* rock-dock.dat */, - 1A2318D20B9D02AA00EF0852 /* scarred_alloy.dat */, - 1A2318D30B9D02AA00EF0852 /* shuttle_redux.dat */, - 1A2318D40B9D02AA00EF0852 /* sidewinder_redux.dat */, - 1A2318D50B9D02AA00EF0852 /* splinter.dat */, - 1A2318D60B9D02AA00EF0852 /* splinter1.dat */, - 1A2318D70B9D02AA00EF0852 /* strut.dat */, - 1A2318D80B9D02AA00EF0852 /* thargoid_redux.dat */, - 1A2318D90B9D02AA00EF0852 /* thargon_redux.dat */, - 1A2318DA0B9D02AA00EF0852 /* transporter_redux.dat */, - 1A2318DC0B9D02AA00EF0852 /* viper_redux.dat */, - 1A2318DD0B9D02AA00EF0852 /* viperi_redux.dat */, - 1A2318DE0B9D02AA00EF0852 /* worm_redux.dat */, - 1A2318E00B9D02AA00EF0852 /* wreck1.dat */, - 1A2318E10B9D02AA00EF0852 /* wreck2.dat */, - 1A2318E20B9D02AA00EF0852 /* wreck3.dat */, - 1A2318E30B9D02AA00EF0852 /* wreck4.dat */, - 1A2318E40B9D02AA00EF0852 /* wreck5.dat */, - ); - name = Legacy; - sourceTree = ""; - }; - 1A89CBA0182533A900A4E455 /* Griffified */ = { - isa = PBXGroup; - children = ( - 1A89CBA1182533BE00A4E455 /* oolite_adder.dat */, - 1A89CBA2182533BE00A4E455 /* oolite_anaconda.dat */, - 1A89CBA3182533BE00A4E455 /* oolite_asp.dat */, - 1A89CBA4182533BE00A4E455 /* oolite_barrel.dat */, - 1A89CBA5182533BE00A4E455 /* oolite_barrel2.dat */, - 1A89CBA6182533BE00A4E455 /* oolite_boa-mk2.dat */, - 1A89CBA7182533BE00A4E455 /* oolite_boa.dat */, - 1A89CBA8182533BE00A4E455 /* oolite_cobra3.dat */, - 1A89CBA9182533BE00A4E455 /* oolite_cobramk1.dat */, - 1A89CBAA182533BE00A4E455 /* oolite_constrictor.dat */, - 1A89CBAB182533BE00A4E455 /* oolite_coriolis_dock.dat */, - 1A89CBAC182533BE00A4E455 /* oolite_coriolis_faceplate.dat */, - 1A89CBAD182533BE00A4E455 /* oolite_coriolis_tris.dat */, - 1A89CBAE182533BE00A4E455 /* oolite_coriolis.dat */, - 1A89CBAF182533BE00A4E455 /* oolite_dodo_dock.dat */, - 1A89CBB0182533BE00A4E455 /* oolite_dodo_faceplate.dat */, - 1A89CBB1182533BE00A4E455 /* oolite_dodo.dat */, - 1A89CBB2182533BE00A4E455 /* oolite_escape_capsule.dat */, - 1A89CBB3182533BE00A4E455 /* oolite_ferdelance.dat */, - 1A89CBB4182533BE00A4E455 /* oolite_gecko.dat */, - 1A89CBB5182533BE00A4E455 /* oolite_ico_dock.dat */, - 1A89CBB6182533BE00A4E455 /* oolite_ico_hull.dat */, - 1A89CBB7182533BE00A4E455 /* oolite_ico.dat */, - 1A89CBB8182533BE00A4E455 /* oolite_krait.dat */, - 1A89CBB9182533BE00A4E455 /* oolite_mamba.dat */, - 1A89CBBA182533BE00A4E455 /* oolite_missile_hardhead.dat */, - 1A89CBBB182533BE00A4E455 /* oolite_missile.dat */, - 1A89CBBC182533BE00A4E455 /* oolite_moray.dat */, - 1A89CBBD182533BE00A4E455 /* oolite_python_trader.dat */, - 1A89CBBE182533BE00A4E455 /* oolite_python.dat */, - 1A89CBBF182533BE00A4E455 /* oolite_rock_hermit_dock.dat */, - 1A89CBC0182533BE00A4E455 /* oolite_rock_hermit_pipes.dat */, - 1A89CBC1182533BE00A4E455 /* oolite_rock_hermit_rock.dat */, - 1A89CBC2182533BE00A4E455 /* oolite_rock_hermit_tunnel_extras.dat */, - 1A89CBC3182533BE00A4E455 /* oolite_rock_hermit.dat */, - 1A89CBC4182533BE00A4E455 /* oolite_shuttle.dat */, - 1A89CBC5182533BE00A4E455 /* oolite_sidewinder_escort.dat */, - 1A89CBC6182533BE00A4E455 /* oolite_sidewinder.dat */, - 1A89CBC7182533BE00A4E455 /* oolite_thargoid.dat */, - 1A89CBC8182533BE00A4E455 /* oolite_thargon.dat */, - 1A89CBC9182533BE00A4E455 /* oolite_transporter.dat */, - 1A89CBCA182533BE00A4E455 /* oolite_viper_interceptor.dat */, - 1A89CBCB182533BE00A4E455 /* oolite_viper.dat */, - 1A89CBCC182533BE00A4E455 /* oolite_worm.dat */, - 1A89CBCD182533BE00A4E455 /* oolite_buoy.dat */, - 1A89CBCE182533BE00A4E455 /* oolite_buoy_subents.dat */, - ); - name = Griffified; - sourceTree = ""; - }; - 1A89CBF9182533E000A4E455 /* Griffified */ = { - isa = PBXGroup; - children = ( - 1A89CBFA1825340000A4E455 /* oolite_barrel_diffuse.png */, - 1A89CBFB1825340000A4E455 /* oolite_barrel2_diffuse.png */, - 1A89CBFC1825340000A4E455 /* oolite_boa_diffuse.png */, - 1A89CBFD1825340000A4E455 /* oolite_boa_subents.png */, - 1A89CBFE1825340000A4E455 /* oolite_boa-mk2_diffuse.png */, - 1A89CBFF1825340000A4E455 /* oolite_boa-mk2_subents.png */, - 1A89CC001825340000A4E455 /* oolite_cobra3_diffuse_alt.png */, - 1A89CC011825340000A4E455 /* oolite_cobra3_diffuse_pirate.png */, - 1A89CC021825340000A4E455 /* oolite_cobra3_diffuse.png */, - 1A89CC031825340000A4E455 /* oolite_cobra3_subents.png */, - 1A89CC041825340000A4E455 /* oolite_cobramk1_diffuse_alt.png */, - 1A89CC051825340000A4E455 /* oolite_cobramk1_diffuse_miner.png */, - 1A89CC061825340000A4E455 /* oolite_cobramk1_diffuse.png */, - 1A89CC071825340000A4E455 /* oolite_constrictor_diffuse.png */, - 1A89CC081825340000A4E455 /* oolite_constrictor_subents.png */, - 1A89CC091825340000A4E455 /* oolite_coriolis_diffuse.png */, - 1A89CC0A1825340000A4E455 /* oolite_coriolis_dock_diffuse.png */, - 1A89CC0B1825340000A4E455 /* oolite_coriolis_faceplate_diffuse.png */, - 1A89CC0C1825340000A4E455 /* oolite_coriolis_tris_diffuse.png */, - 1A89CC0D1825340000A4E455 /* oolite_dodo_diffuse.png */, - 1A89CC0E1825340000A4E455 /* oolite_dodo_dock_diffuse.png */, - 1A89CC0F1825340000A4E455 /* oolite_dodo_faceplate_diffuse.png */, - 1A89CC101825340000A4E455 /* oolite_escape_capsule_diffuse.png */, - 1A89CC111825340000A4E455 /* oolite_ferdelance_diffuse.png */, - 1A89CC121825340000A4E455 /* oolite_ferdelance_subents.png */, - 1A89CC131825340000A4E455 /* oolite_gecko_diffuse.png */, - 1A89CC141825340000A4E455 /* oolite_gecko_subents.png */, - 1A89CC151825340000A4E455 /* oolite_ico_diffuse.png */, - 1A89CC161825340000A4E455 /* oolite_ico_dock_diffuse.png */, - 1A89CC171825340000A4E455 /* oolite_ico_hull_diffuse.png */, - 1A89CC181825340000A4E455 /* oolite_krait_diffuse.png */, - 1A89CC191825340000A4E455 /* oolite_mamba_diffuse_escort.png */, - 1A89CC1A1825340000A4E455 /* oolite_mamba_diffuse.png */, - 1A89CC1B1825340000A4E455 /* oolite_mamba_subents.png */, - 1A89CC1C1825340000A4E455 /* oolite_missile_diffuse.png */, - 1A89CC1D1825340000A4E455 /* oolite_missile_hardhead_diffuse.png */, - 1A89CC1E1825340000A4E455 /* oolite_moray_diffuse_med.png */, - 1A89CC1F1825340000A4E455 /* oolite_moray_diffuse.png */, - 1A89CC201825340000A4E455 /* oolite_moray_subents.png */, - 1A89CC211825340000A4E455 /* oolite_python_diffuse_blackdog.png */, - 1A89CC221825340000A4E455 /* oolite_python_diffuse_trader.png */, - 1A89CC231825340000A4E455 /* oolite_python_diffuse.png */, - 1A89CC241825340000A4E455 /* oolite_python_subents_trader.png */, - 1A89CC251825340000A4E455 /* oolite_python_subents.png */, - 1A89CC261825340000A4E455 /* oolite_rock_hermit_diffuse.png */, - 1A89CC271825340000A4E455 /* oolite_rock_hermit_dock_diffuse.png */, - 1A89CC281825340000A4E455 /* oolite_rock_hermit_pipes_diffuse.png */, - 1A89CC291825340000A4E455 /* oolite_rock_hermit_rock_diffuse.png */, - 1A89CC2A1825340000A4E455 /* oolite_rock_hermit_tunnel_extras_diffuse.png */, - 1A89CC2B1825340000A4E455 /* oolite_shuttle_diffuse.png */, - 1A89CC2C1825340000A4E455 /* oolite_sidewinder_diffuse_escort.png */, - 1A89CC2D1825340000A4E455 /* oolite_sidewinder_diffuse.png */, - 1A89CC2E1825340000A4E455 /* oolite_thargoid_diffuse.png */, - 1A89CC2F1825340000A4E455 /* oolite_thargon_diffuse.png */, - 1A89CC301825340000A4E455 /* oolite_transporter_diffuse_miner.png */, - 1A89CC311825340000A4E455 /* oolite_transporter_diffuse.png */, - 1A89CC321825340000A4E455 /* oolite_viper_diffuse_pursuit.png */, - 1A89CC331825340000A4E455 /* oolite_viper_diffuse.png */, - 1A89CC341825340000A4E455 /* oolite_viper_interceptor_diffuse.png */, - 1A89CC351825340000A4E455 /* oolite_worm_diffuse_miner.png */, - 1A89CC361825340000A4E455 /* oolite_worm_diffuse.png */, - 1A89CC371825340000A4E455 /* oolite_adder_diffuse.png */, - 1A89CC381825340000A4E455 /* oolite_anaconda_diffuse.png */, - 1A89CC391825340000A4E455 /* oolite_anaconda_subents.png */, - 1A89CC3A1825340000A4E455 /* oolite_asp_diffuse.png */, - 1A89CC3B1825340000A4E455 /* oolite_asp_subents.png */, - 1A89CC3C1825340000A4E455 /* oolite_buoy_diffuse.png */, - 1A89CC3D1825340000A4E455 /* oolite_buoy_illumination.png */, - 1A89CC3F1825340000A4E455 /* oolite_buoy_specular.png */, - 1A89CC401825340000A4E455 /* oolite_buoy_subents.png */, - ); - name = Griffified; - sourceTree = ""; - }; - 1A89CC7E1825342600A4E455 /* Legacy */ = { - isa = PBXGroup; - children = ( - 1A23181E0B9D026D00EF0852 /* adder_redux.png */, - 1A23181F0B9D026D00EF0852 /* anaconda_redux.png */, - 1A2318200B9D026D00EF0852 /* arcdetail.png */, - 1A2318220B9D026D00EF0852 /* asp_redux.png */, - 1A2318230B9D026D00EF0852 /* asteroid.png */, - 1A2318240B9D026D00EF0852 /* back_metal.png */, - 1A2318250B9D026D00EF0852 /* barrel_metal.png */, - 1A2318290B9D026D00EF0852 /* boa2_redux.png */, - 1A23182C0B9D026D00EF0852 /* boa_redux.png */, - 1A23182D0B9D026D00EF0852 /* bottom_metal.png */, - 1A23182E0B9D026D00EF0852 /* cobra1_redux.png */, - 1A23182F0B9D026D00EF0852 /* cobra1_redux1.png */, - 1A2318300B9D026D00EF0852 /* cobra1_redux2.png */, - 1A2318320B9D026D00EF0852 /* cobra3_redux.png */, - 1A2318330B9D026D00EF0852 /* cobra3_redux1.png */, - 1A2318340B9D026D00EF0852 /* constrictor_redux.png */, - 1A2318350B9D026D00EF0852 /* dark_metal.png */, - 1A2318360B9D026D00EF0852 /* ferdelance_redux.png */, - 1A2318380B9D026D00EF0852 /* front_metal.png */, - 1A23183A0B9D026D00EF0852 /* gecko_redux.png */, - 1A23183B0B9D026D00EF0852 /* krait_redux.png */, - 1A23183C0B9D026D00EF0852 /* left_metal.png */, - 1A23183D0B9D026D00EF0852 /* mamba_redux.png */, - 1A23183E0B9D026D00EF0852 /* mamba_redux1.png */, - 1A23183F0B9D026D00EF0852 /* metal.png */, - 1A2318400B9D026D00EF0852 /* missile.png */, - 1A2318410B9D026D00EF0852 /* moray_redux.png */, - 1A2318420B9D026D00EF0852 /* moray_redux1.png */, - 1A2318490B9D026D00EF0852 /* pod2_redux.png */, - 1A23184A0B9D026D00EF0852 /* python_redux.png */, - 1A23184B0B9D026D00EF0852 /* python_redux1.png */, - 1A23184C0B9D026D00EF0852 /* python_redux2.png */, - 1A23184D0B9D026D00EF0852 /* qbomb.png */, - 1A23184E0B9D026D00EF0852 /* right_metal.png */, - 1A23184F0B9D026D00EF0852 /* scarred_metal.png */, - 1A2318500B9D026D00EF0852 /* shuttle_redux.png */, - 1A2318510B9D026D00EF0852 /* sidewinder_redux.png */, - 1A2318530B9D026D00EF0852 /* target_metal.png */, - 1A2318540B9D026D00EF0852 /* thargoid_redux.png */, - 1A2318550B9D026D00EF0852 /* thargon_redux.png */, - 1A2318560B9D026D00EF0852 /* top_metal.png */, - 1A2318570B9D026D00EF0852 /* transporter_redux.png */, - 1A2318580B9D026D00EF0852 /* transporter_redux1.png */, - 1A23185A0B9D026D00EF0852 /* viper_redux.png */, - 1A23185B0B9D026D00EF0852 /* viperi_redux.png */, - 1A23185C0B9D026D00EF0852 /* worm_redux.png */, - 1A23185D0B9D026D00EF0852 /* worm_redux1.png */, - 1A23185E0B9D026D00EF0852 /* wreck.png */, - ); - name = Legacy; - sourceTree = ""; - }; - 1A8A3BE90B963F02007D20B8 /* Source */ = { - isa = PBXGroup; - children = ( - 1A35251312E1F89700244C9D /* Tables */, - 1A8A3C0C0B963FF8007D20B8 /* Entities */, - 1A8A3C0F0B964002007D20B8 /* AI */, - 1A8A3C180B964030007D20B8 /* Resource Management */, - 1A8A3C1E0B9640B4007D20B8 /* Mathematics */, - 1A8A3C1B0B96407A007D20B8 /* User Interface */, - 1A8A3BFB0B963F91007D20B8 /* Utilities */, - 1A8A3BF20B963F3C007D20B8 /* Mac-specific */, - 1ACEA3BC0C915A1600C7CE97 /* Misc */, - 1A7B96800E620CA000322821 /* Audio */, - 1A2A1B020BD2768300152975 /* Graphics */, - 1A5DBA980BC000DC00D57389 /* Scripting */, - 1A2DA2A00CB4CB3500DE6823 /* Debug */, - 1AB2AAE70C4CDF890008CF4E /* OXP Verification */, - ); - name = Source; - path = src/Core; - sourceTree = ""; - }; - 1A8A3BF20B963F3C007D20B8 /* Mac-specific */ = { - isa = PBXGroup; - children = ( - 25F3E6BC0994F30A002F25FD /* main.m */, - 25F46750099695D5009483BF /* OoliteApp.h */, - 25F46751099695D5009483BF /* OoliteApp.m */, - 2576E7B209B4F418007410F7 /* MyOpenGLView.h */, - 25F4676309969672009483BF /* MyOpenGLView.m */, - 1AAF56160F1A198400A2F2E6 /* Comparison.h */, - 1A143A4611EF22C5001BAB8D /* JAPersistentFileReference.h */, - 1A143A4711EF22C5001BAB8D /* JAPersistentFileReference.m */, - 1A033FB613268ABB006F9DB7 /* OOPDFView.h */, - 1A033FB713268ABB006F9DB7 /* OOPDFView.m */, - 1A54115914B8913E00B8A4BE /* OOMacJoystickManager.h */, - 1A54115A14B8913E00B8A4BE /* OOMacJoystickManager.m */, - 1A9FCF2115DAC8E100E965D5 /* OOMacSnowLeopardFullScreenController.h */, - 1A9FCF2215DAC8E100E965D5 /* OOMacSnowLeopardFullScreenController.m */, - 1A72F86715E14F1100281337 /* OOMacSystemStandardFullScreenController.h */, - 1A72F86815E14F1100281337 /* OOMacSystemStandardFullScreenController.m */, - 1A401F8615E7AF7B004CDF95 /* OOPrimaryWindow.h */, - 1A401F8715E7AF7B004CDF95 /* OOPrimaryWindow.m */, - 1A97528D15DECA6600108FA5 /* OOFullScreenWindow.h */, - 1A97528E15DECA6600108FA5 /* OOFullScreenWindow.m */, - ); - name = "Mac-specific"; - path = ../Cocoa; - sourceTree = ""; - }; - 1A8A3BFB0B963F91007D20B8 /* Utilities */ = { - isa = PBXGroup; - children = ( - 1ABAD7300F350B3400FD2CBF /* OOShipGroup.h */, - 1ABAD72F0F350B3400FD2CBF /* OOShipGroup.m */, - 1A20F7040F36EE0500156DE9 /* OOExcludeObjectEnumerator.h */, - 1A20F7050F36EE0500156DE9 /* OOExcludeObjectEnumerator.m */, - 1ABDBA3A0EB365D90086BC3D /* OOIsNumberLiteral.h */, - 1ABDBA390EB365D90086BC3D /* OOIsNumberLiteral.m */, - 1AB4AEB60D688AD9003076D6 /* OOLogHeader.h */, - 1AB4AEB70D688AD9003076D6 /* OOLogHeader.m */, - 25161107099544390037C2E1 /* OOXMLExtensions.h */, - 25161102099544380037C2E1 /* OOXMLExtensions.m */, - 1A047A430DCA0F4F00EE1CD0 /* NSDictionaryOOExtensions.h */, - 1A047A440DCA0F4F00EE1CD0 /* NSDictionaryOOExtensions.m */, - 1A8A37550B960337007D20B8 /* NSMutableDictionaryOOExtensions.h */, - 1A8A37540B960337007D20B8 /* NSMutableDictionaryOOExtensions.m */, - 1A3BA257106555D100C5C6F3 /* NSNumberOOExtensions.h */, - 1A3BA258106555D100C5C6F3 /* NSNumberOOExtensions.m */, - 1A8A394D0B96229C007D20B8 /* NSFileManagerOOExtensions.h */, - 1A8A394C0B96229C007D20B8 /* NSFileManagerOOExtensions.m */, - 1A8A3A360B962AEF007D20B8 /* NSScannerOOExtensions.h */, - 1A8A3A370B962AEF007D20B8 /* NSScannerOOExtensions.m */, - 083325DB09DDBCDE00F5B8E4 /* OOColor.h */, - 083325DC09DDBCDE00F5B8E4 /* OOColor.m */, - 25160E2E0995362F0037C2E1 /* OOCocoa.h */, - 1A38B4AA0B988532001ED4A0 /* OOLogging.h */, - 1ABB688B0D044306008BE96D /* OOLoggingExtended.h */, - 1A38B4AB0B988532001ED4A0 /* OOLogging.m */, - 1AB813070E90D8E500A84923 /* OOLogOutputHandler.m */, - 1AB813080E90D8E500A84923 /* OOLogOutputHandler.h */, - 1AAEE9D8161F7523003A5A1E /* OOStringExpander.h */, - 1AAEE9D9161F7523003A5A1E /* OOStringExpander.m */, - 1A9400BF0BAF0EDB005F6CF3 /* OOStringParsing.h */, - 1A9400BD0BAF0ECD005F6CF3 /* OOStringParsing.m */, - 1A9403CF0BAF36C3005F6CF3 /* OOFunctionAttributes.h */, - 1A9404240BAF3DED005F6CF3 /* OOCollectionExtractors.m */, - 1A9404250BAF3DED005F6CF3 /* OOCollectionExtractors.h */, - 1A5DB1E80BBD8F0000D57389 /* OOConstToString.h */, - 1A5DB1E90BBD8F0000D57389 /* OOConstToString.m */, - 1A5DBD560BC17F0900D57389 /* NSStringOOExtensions.h */, - 1A5DBD570BC17F0900D57389 /* NSStringOOExtensions.m */, - 1A3491AA0BC282DE00802DA7 /* ReleaseLockProxy.h */, - 1A3491AB0BC282DE00802DA7 /* ReleaseLockProxy.m */, - 1A2A8E010BC67CCC001E00FB /* OOWeakReference.h */, - 1A2A8E020BC67CCC001E00FB /* OOWeakReference.m */, - 1A2A17D40BD1587D00152975 /* OOCPUInfo.h */, - 1A2A17D50BD1587D00152975 /* OOCPUInfo.m */, - 1A00C7DD1066814C00A8737D /* OOAsyncWorkManager.h */, - 1A00C7DE1066814C00A8737D /* OOAsyncWorkManager.m */, - 1A7D83380C40147700E4A5F5 /* OOAsyncQueue.h */, - 1A7D83390C40147700E4A5F5 /* OOAsyncQueue.m */, - 1A6B1F340C9AAA60000717CF /* OOPriorityQueue.m */, - 1A6B1F350C9AAA60000717CF /* OOPriorityQueue.h */, - 1A43A1840CB9243B00D0E239 /* OOEntityFilterPredicate.h */, - 1A43A1850CB9243B00D0E239 /* OOEntityFilterPredicate.m */, - 1AD1F4C70CD9E42A00EAE520 /* NSThreadOOExtensions.h */, - 1AD1F4C80CD9E42A00EAE520 /* NSThreadOOExtensions.m */, - 1A1D212D0D2BD4C100F4DEC2 /* bsd_string.h */, - 1AAB9A960D779F3C00A9F424 /* OOCocoa.m */, - B3B46C851A0D053D00D6C39B /* OOSystemDescriptionManager.h */, - B3B46C861A0D053D00D6C39B /* OOSystemDescriptionManager.m */, - 1A1616600D7DCFDC0094AE5B /* OOFilteringEnumerator.h */, - 1A1616610D7DCFDC0094AE5B /* OOFilteringEnumerator.m */, - 1A047B7C0DCB3D7500EE1CD0 /* OOProbabilitySet.h */, - 1A047B7D0DCB3D7500EE1CD0 /* OOProbabilitySet.m */, - 1ADA8AB10F42DBA80001BEC9 /* OODeepCopy.h */, - 1ADA8AB20F42DBA80001BEC9 /* OODeepCopy.m */, - 1A43F28A105170A8003FDE8B /* OONSOperation.h */, - 1A00C65310663D3700A8737D /* OOProfilingStopwatch.h */, - 1A00C65410663D3700A8737D /* OOProfilingStopwatch.m */, - 1AEB4918119D5AAA007BD514 /* OORegExpMatcher.h */, - 1AEB4919119D5AAA007BD514 /* OORegExpMatcher.m */, - 1A062C8711B28D8A00727C1D /* NSObjectOOExtensions.h */, - 1A062C8811B28D8A00727C1D /* NSObjectOOExtensions.m */, - 1A5D5891182525DE00C779AE /* NSDataOOExtensions.h */, - 1A5D5892182525DE00C779AE /* NSDataOOExtensions.m */, - 1AF4AF4815B858AA009243BE /* OOWeakSet.h */, - 1AF4AF4915B858AA009243BE /* OOWeakSet.m */, - ); - name = Utilities; - sourceTree = ""; - }; - 1A8A3C0C0B963FF8007D20B8 /* Entities */ = { - isa = PBXGroup; - children = ( - 1A26D09D0BCF9CF70073F257 /* Entity.h */, - 1A26D0A80BCF9CF70073F257 /* Entity.m */, - 1A7E317B113ED37C009AAB6D /* EntityShaderBindings.m */, - 1A2A1B050BD276A900152975 /* OOEntityWithDrawable.h */, - 1A2A1B060BD276A900152975 /* OOEntityWithDrawable.m */, - 1A7E3187113ED496009AAB6D /* ProxyPlayerEntity.h */, - 1A7E3188113ED496009AAB6D /* ProxyPlayerEntity.m */, - 1A26D0900BCF9CF70073F257 /* ShipEntity.h */, - 1A26D08F0BCF9CF70073F257 /* ShipEntity.m */, - 1A26D08A0BCF9CF70073F257 /* ShipEntityAI.h */, - 1A26D0890BCF9CF70073F257 /* ShipEntityAI.m */, - 1A7BA80B0D84231A003C6CA3 /* ShipEntityScriptMethods.h */, - 1A7BA80C0D84231A003C6CA3 /* ShipEntityScriptMethods.m */, - 1A01574111034A86008EE36A /* ShipEntityLoadRestore.h */, - 1A01574211034A86008EE36A /* ShipEntityLoadRestore.m */, - 1A26D0A30BCF9CF70073F257 /* StationEntity.h */, - 1A26D0A20BCF9CF70073F257 /* StationEntity.m */, - 1A26D1090BCFA8D40073F257 /* PlayerEntity */, - 1A26D0930BCF9CF70073F257 /* SkyEntity.h */, - 1A26D0920BCF9CF70073F257 /* SkyEntity.m */, - 1A26D0950BCF9CF70073F257 /* OOBreakPatternEntity.h */, - 1A26D0940BCF9CF70073F257 /* OOBreakPatternEntity.m */, - 1A26D09A0BCF9CF70073F257 /* PlanetEntity.h */, - 1A26D0990BCF9CF70073F257 /* PlanetEntity.m */, - 1A26D0A10BCF9CF70073F257 /* WormholeEntity.h */, - 1A26D0A00BCF9CF70073F257 /* WormholeEntity.m */, - 1A26D0A70BCF9CF70073F257 /* DustEntity.h */, - 1A26D0A90BCF9CF80073F257 /* DustEntity.m */, - 1A112739105994D000DF9D12 /* OOExhaustPlumeEntity.h */, - 1A11273A105994D000DF9D12 /* OOExhaustPlumeEntity.m */, - 1A00C7B810667D3100A8737D /* OOECMBlastEntity.h */, - 1A00C7B910667D3100A8737D /* OOECMBlastEntity.m */, - 1AA7FD1C10C2C3750058FBED /* OOPlanetEntity.h */, - 1AA7FD1D10C2C3750058FBED /* OOPlanetEntity.m */, - 1ADA564710CD68D800E891B8 /* OOStellarBody.h */, - 1AA7FDDA10C2DC800058FBED /* OOSunEntity.h */, - 1AA7FDDB10C2DC800058FBED /* OOSunEntity.m */, - 1A72F86C15E5655C00281337 /* OOVisualEffectEntity.h */, - 1A72F86D15E5655D00281337 /* OOVisualEffectEntity.m */, - 1ABA415C15ACBB6700F7E841 /* DockEntity.h */, - 1ABA415D15ACBB6700F7E841 /* DockEntity.m */, - 1A1F6D0B180AC324002AD52E /* OOWaypointEntity.h */, - 1A1F6D0C180AC324002AD52E /* OOWaypointEntity.m */, - 1A817DCA106D44D900AA2F97 /* Particles */, - ); - path = Entities; - sourceTree = ""; - }; - 1A8A3C0F0B964002007D20B8 /* AI */ = { - isa = PBXGroup; - children = ( - 25161106099544390037C2E1 /* AI.h */, - 25161101099544380037C2E1 /* AI.m */, - 1A6A963210AEEC5D0065D0F3 /* AIGraphViz.m */, - 2516111C099544390037C2E1 /* OOCharacter.h */, - 2516111B099544390037C2E1 /* OOCharacter.m */, - ); - name = AI; - sourceTree = ""; - }; - 1A8A3C180B964030007D20B8 /* Resource Management */ = { - isa = PBXGroup; - children = ( - 2516113A099544390037C2E1 /* ResourceManager.h */, - 25161139099544390037C2E1 /* ResourceManager.m */, - 25161134099544390037C2E1 /* TextureStore.h */, - 25161145099544390037C2E1 /* TextureStore.m */, - 1A231A160B9D8B1B00EF0852 /* OOCacheManager.h */, - 1A231A170B9D8B1B00EF0852 /* OOCacheManager.m */, - 1A29967C0B9F064C002D2149 /* OOCache.h */, - 1A29967D0B9F064C002D2149 /* OOCache.m */, - 1A9404640BAF42BE005F6CF3 /* OOPListParsing.h */, - 1A9404650BAF42BF005F6CF3 /* OOPListParsing.m */, - 1A0729FC0EF5796500B0F925 /* OldSchoolPropertyListWriting.h */, - 1A0729FD0EF5796500B0F925 /* OldSchoolPropertyListWriting.m */, - 1A0729D70EF56D1200B0F925 /* OOConvertSystemDescriptions.h */, - 1A0729D80EF56D1200B0F925 /* OOConvertSystemDescriptions.m */, - 1A05AFCB1879C2B800AFA7D1 /* OOOXZManager.h */, - 1A05AFCC1879C2B800AFA7D1 /* OOOXZManager.m */, - ); - name = "Resource Management"; - sourceTree = ""; - }; - 1A8A3C1B0B96407A007D20B8 /* User Interface */ = { - isa = PBXGroup; - children = ( - 2516112C099544390037C2E1 /* HeadUpDisplay.h */, - 2516112B099544390037C2E1 /* HeadUpDisplay.m */, - 25161127099544390037C2E1 /* GuiDisplayGen.h */, - 25161126099544390037C2E1 /* GuiDisplayGen.m */, - 1AC545040D4D228400C90E5B /* OOEncodingConverter.h */, - 1AC545050D4D228400C90E5B /* OOEncodingConverter.m */, - 1AB5E1ED12BD628500C334DD /* OOJoystickManager.h */, - 1AB5E1EE12BD628500C334DD /* OOJoystickManager.m */, - 1A69FFF518A64CF70062EAC8 /* OOJoystickProfile.h */, - 1A69FFF618A64CF70062EAC8 /* OOJoystickProfile.m */, - ); - name = "User Interface"; - sourceTree = ""; - }; - 1A8A3C1E0B9640B4007D20B8 /* Mathematics */ = { - isa = PBXGroup; - children = ( - 2512834009BA27EC00F43D55 /* OOMeshToOctreeConverter.h */, - 2512834109BA27EC00F43D55 /* OOMeshToOctreeConverter.m */, - 2512833D09BA27C100F43D55 /* Octree.h */, - 2512833C09BA27C100F43D55 /* Octree.m */, - 2512834409BA281500F43D55 /* CollisionRegion.h */, - 2512834509BA281500F43D55 /* CollisionRegion.m */, - 1A9404920BAF4582005F6CF3 /* OOMaths.h */, - 1A9404A10BAF462D005F6CF3 /* OOVector.h */, - 1A9404A20BAF462D005F6CF3 /* OOVector.m */, - 1AD8522317947BD600CBE743 /* OOHPVector.h */, - 1AD8522417947BD600CBE743 /* OOHPVector.m */, - 1A9405360BAF4FA6005F6CF3 /* OOMatrix.h */, - 1A9405370BAF4FA6005F6CF3 /* OOMatrix.m */, - 1A94057D0BAF52AD005F6CF3 /* OOQuaternion.h */, - 1A94057E0BAF52AD005F6CF3 /* OOQuaternion.m */, - 1A9406290BAF6170005F6CF3 /* OOBoundingBox.h */, - 1A9406820BAF66D6005F6CF3 /* OOVoxel.h */, - 1A9406830BAF66D6005F6CF3 /* OOVoxel.m */, - 1A9406B20BAF67BF005F6CF3 /* OOTriangle.h */, - 1AB01BB90BB16A8A00F1B949 /* OOFastArithmetic.h */, - 25F3E6300994F033002F25FD /* legacy_random.h */, - 25F3E6320994F04C002F25FD /* legacy_random.c */, - 1A7CBF6D10937DD6005B7797 /* OOPointMaths.h */, - ); - name = Mathematics; - sourceTree = ""; - }; - 1AA085E81825788E007CCAEB /* OpenAL */ = { - isa = PBXGroup; - children = ( - 1AA0860E182578B8007CCAEB /* OOOpenAL.h */, - 1AA0860F182578B8007CCAEB /* OOOpenALController.h */, - 1AA08610182578B8007CCAEB /* OOOpenALController.m */, - 1AA085EE182578AF007CCAEB /* OOALBufferedSound.h */, - 1AA085EF182578AF007CCAEB /* OOALBufferedSound.m */, - 1AA085F2182578AF007CCAEB /* OOALMusic.h */, - 1AA085F3182578AF007CCAEB /* OOALMusic.m */, - 1AA085F4182578AF007CCAEB /* OOALSound.h */, - 1AA085F5182578AF007CCAEB /* OOALSound.m */, - 1AA085F6182578AF007CCAEB /* OOALSoundChannel.h */, - 1AA085F7182578AF007CCAEB /* OOALSoundChannel.m */, - 1AA085F8182578AF007CCAEB /* OOALSoundDecoder.h */, - 1AA085F9182578AF007CCAEB /* OOALSoundDecoder.m */, - 1AA085FA182578AF007CCAEB /* OOALSoundMixer.h */, - 1AA085FB182578AF007CCAEB /* OOALSoundMixer.m */, - 1AA085FC182578AF007CCAEB /* OOALStreamedSound.h */, - 1AA085FD182578AF007CCAEB /* OOALStreamedSound.m */, - ); - name = OpenAL; - sourceTree = ""; - }; - 1AA2E7061191E39600DFBA23 /* Build stuff */ = { - isa = PBXGroup; - children = ( - 1A9407BF0BAF7032005F6CF3 /* GNUmakefile */, - 1ABFEE2110507987005AA752 /* oolite-nonshared.xcconfig */, - 1AD88FAF103F29D300AA36F4 /* oolite-options.xcconfig */, - 1A6A3A7E1135E0F200697AF8 /* oolite-snapshot.xcconfig */, - 1A45BCC9104AB46900A89324 /* oolite-targets.xcconfig */, - 1A846BA90D79F9570081280D /* oolite-version.xcconfig */, - 1A0730E817888C44008A1829 /* oolite-warnings.xcconfig */, - 1AD5A81B12D3A9FD00B62503 /* exports-debug-64.exp */, - 1A1B24C313293ED2007A0940 /* exports-release.exp */, - ); - name = "Build stuff"; - sourceTree = ""; - }; - 1AB2AAE70C4CDF890008CF4E /* OXP Verification */ = { - isa = PBXGroup; - children = ( - 4F1F15621B0FCC17001C1591 /* OOCheckJSSyntaxVerifierStage.h */, - 4F1F15601B0FCBFA001C1591 /* OOCheckJSSyntaxVerifierStage.m */, - 4F1F155E1B0FCB76001C1591 /* OOCheckPListSyntaxVerifierStage.h */, - 4F1F155C1B0FCB11001C1591 /* OOCheckPListSyntaxVerifierStage.m */, - 1AB2AB120C4CE4070008CF4E /* verifyOXP.plist */, - 1AB2AAF80C4CE0CC0008CF4E /* OOOXPVerifier.h */, - 1AB2AAF90C4CE0CC0008CF4E /* OOOXPVerifier.m */, - 1A27DB390C4E349F00CB4CE8 /* OOOXPVerifierStage.h */, - 1A27DB380C4E349F00CB4CE8 /* OOOXPVerifierStageInternal.h */, - 1A27DB3A0C4E349F00CB4CE8 /* OOOXPVerifierStage.m */, - 1A27DB400C4E34B300CB4CE8 /* OOFileScannerVerifierStage.h */, - 1A27DB410C4E34B300CB4CE8 /* OOFileScannerVerifierStage.m */, - 1A7D3A160C4F6162008EDC33 /* OOCheckRequiresPListVerifierStage.h */, - 1A7D3A170C4F6162008EDC33 /* OOCheckRequiresPListVerifierStage.m */, - 1A7D3B990C4F7843008EDC33 /* OOCheckDemoShipsPListVerifierStage.h */, - 1A7D3B9A0C4F7843008EDC33 /* OOCheckDemoShipsPListVerifierStage.m */, - 1A7D3C470C4F818C008EDC33 /* OOCheckEquipmentPListVerifierStage.h */, - 1A7D3C480C4F818C008EDC33 /* OOCheckEquipmentPListVerifierStage.m */, - 1A3159250F1B7B7E00328E4A /* OOAIStateMachineVerifierStage.h */, - 1A3159260F1B7B7E00328E4A /* OOAIStateMachineVerifierStage.m */, - 1A7D3D290C4F8D01008EDC33 /* OOTextureVerifierStage.h */, - 1A7D3D2A0C4F8D02008EDC33 /* OOTextureVerifierStage.m */, - 1A7D41850C516B90008EDC33 /* OOModelVerifierStage.h */, - 1A7D41840C516B90008EDC33 /* OOModelVerifierStage.m */, - 1A7D41E00C516E9E008EDC33 /* OOCheckShipDataPListVerifierStage.h */, - 1A7D41E10C516E9E008EDC33 /* OOCheckShipDataPListVerifierStage.m */, - 1A6DD1210C57B5BC00A892F4 /* OOPListSchemaVerifier.h */, - 1A6DD1220C57B5BC00A892F4 /* OOPListSchemaVerifier.m */, - ); - name = "OXP Verification"; - path = OXPVerifier; - sourceTree = ""; - }; - 1AB775FD12CA2E53001478BB /* Products */ = { - isa = PBXGroup; - children = ( - 1AB7760212CA2E53001478BB /* libjs_for_oolite.a */, - 1AB7760412CA2E53001478BB /* libnspr4_for_oolite.a */, - 1AD05EBA12CD1B4700704F1D /* jsapi-tests */, - 1A8FA92712F0C694008FF5A2 /* jsoplengen */, - 1A8FA92912F0C694008FF5A2 /* jskwgen */, - ); - name = Products; - sourceTree = ""; - }; - 1AC0E9380B974D8700C46994 /* Documentation */ = { - isa = PBXGroup; - children = ( - 1A033FA213268821006F9DB7 /* OoliteReadMe.pdf */, - 1AF8E33A0CC169F500CA6001 /* contributors.txt */, - 1AC0E9490B974DC200C46994 /* LICENSE.TXT */, - 1AC0E9460B974DC200C46994 /* GPL.TXT */, - 1AC0E9470B974DC200C46994 /* FAQ.TXT */, - 1AC0E94A0B974DC200C46994 /* PORTING.TXT */, - 1AC0E94B0B974DC200C46994 /* README_LINUX.TXT */, - ); - name = Documentation; - path = ../Doc; - sourceTree = ""; - }; - 1ACEA3BC0C915A1600C7CE97 /* Misc */ = { - isa = PBXGroup; - children = ( - 1A3A04610BC547DC00B5E2D9 /* OOTypes.h */, - 25161144099544390037C2E1 /* Universe.h */, - 25161143099544390037C2E1 /* Universe.m */, - 1A4F917B19CEDDC600E18B65 /* OOCommodities.h */, - 1A4F917C19CEDDC600E18B65 /* OOCommodities.m */, - 1A4F917919CEDDB200E18B65 /* OOCommodityMarket.h */, - 1A4F917719CEDD7900E18B65 /* OOCommodityMarket.m */, - 25161116099544390037C2E1 /* OOSound.h */, - 25161110099544390037C2E1 /* OOTrumble.h */, - 25161108099544390037C2E1 /* OOTrumble.m */, - 2516110B099544390037C2E1 /* GameController.h */, - 2516110C099544390037C2E1 /* GameController.m */, - 1A9FCF2515DAC9BC00E965D5 /* GameController+FullScreen.m */, - 1A72F86315E002E100281337 /* OOMouseInteractionMode.h */, - 1A72F86415E002E100281337 /* OOMouseInteractionMode.m */, - 1AE1A93F15D2C4E4003F4D56 /* OOFullScreenController.h */, - 1AE1A94015D2C4E4003F4D56 /* OOFullScreenController.m */, - 1A5218D80D72EC21000865E9 /* OOSpatialReference.h */, - 1A5218DD0D72ECE5000865E9 /* OOSpatialReference.m */, - 1ACEA3470C91507000C7CE97 /* OORoleSet.h */, - 1ACEA3480C91507000C7CE97 /* OORoleSet.m */, - 1A0479E70DC9F81000EE1CD0 /* OOShipRegistry.h */, - 1A0479E80DC9F81000EE1CD0 /* OOShipRegistry.m */, - 1AD2E31418F17BC700239EBB /* OOShipLibraryDescriptions.h */, - 1AD2E31518F17BC700239EBB /* OOShipLibraryDescriptions.m */, - 1A62F0FC0E26A2A000897506 /* OOEquipmentType.h */, - 1A62F0FB0E26A2A000897506 /* OOEquipmentType.m */, - 1A7038A112BB9F5A0015CCDC /* dummy.cpp */, - ); - name = Misc; - sourceTree = ""; - }; - 1ADC3F850BFA1388000E0F89 /* Drawables */ = { - isa = PBXGroup; - children = ( - 1A2A1B120BD2774300152975 /* OODrawable.h */, - 1A2A1B130BD2774300152975 /* OODrawable.m */, - 1A2A1CA80BD2914F00152975 /* OOMesh.h */, - 1A2A1CA90BD2914F00152975 /* OOMesh.m */, - 1A1504490C12C50D0032F3E8 /* OOSkyDrawable.h */, - 1A15044A0C12C50D0032F3E8 /* OOSkyDrawable.m */, - 1AA7FCA910C2B9BA0058FBED /* OOPlanetDrawable.h */, - 1AA7FCAA10C2B9BA0058FBED /* OOPlanetDrawable.m */, - 1AA7FCAE10C2BA3B0058FBED /* OOPlanetData.h */, - 1AA7FCAD10C2BA3B0058FBED /* OOPlanetData.c */, - ); - name = Drawables; - sourceTree = ""; - }; - 1AE3454C12CB77A700FD8C62 /* Products */ = { - isa = PBXGroup; - children = ( - 1AE3455012CB77A700FD8C62 /* libogg_for_oolite.a */, - ); - name = Products; - sourceTree = ""; - }; - 1AE3455212CB77AC00FD8C62 /* Products */ = { - isa = PBXGroup; - children = ( - 1AE3455612CB77AC00FD8C62 /* libvorbis_for_oolite.a */, - ); - name = Products; - sourceTree = ""; - }; - 1AF4AF4C15B8616F009243BE /* Unit tests */ = { - isa = PBXGroup; - children = ( - 1AB2D61C15B86EA400177AAF /* OoliteUnitTests.xcodeproj */, - ); - name = "Unit tests"; - sourceTree = ""; - }; - 29B97314FDCFA39411CA2CEA /* Oolite_GUSTO */ = { - isa = PBXGroup; - children = ( - 1AA2E7061191E39600DFBA23 /* Build stuff */, - 1A37D1ED1049B2E400BC8976 /* CHANGELOG.TXT */, - 1A3D68FB11C7F4D400651B08 /* CHECKLIST.TXT */, - 1A8A3BE90B963F02007D20B8 /* Source */, - 1A2314300B9C667F00EF0852 /* Resources */, - 1A5BF2710916D45B00BF238F /* External bundles */, - 29B97323FDCFA39411CA2CEA /* Frameworks */, - 19C28FACFE9D520D11CA2CBB /* Products */, - 1AF4AF4C15B8616F009243BE /* Unit tests */, - ); - name = Oolite_GUSTO; - sourceTree = ""; - }; - 29B97323FDCFA39411CA2CEA /* Frameworks */ = { - isa = PBXGroup; - children = ( - 1AA0861518257A11007CCAEB /* OpenAL.framework */, - 1A5D58811825241800C779AE /* MiniZip */, - 1AB775FC12CA2E53001478BB /* libjs.xcodeproj */, - 1AE3454B12CB77A700FD8C62 /* Ogg.xcodeproj */, - 1AE3455112CB77AC00FD8C62 /* Vorbis.xcodeproj */, - 1A78B5D412D74CF900D42EE7 /* libpng.xcodeproj */, - 1A71E8780BCE8EB100CD5C13 /* libz.dylib */, - 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, - 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, - ); - name = Frameworks; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 0865423606B8447D000CA0AB /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 25F3E6310994F033002F25FD /* legacy_random.h in Headers */, - 25F3E63B0994F08A002F25FD /* OOOpenGL.h in Headers */, - 25160E2F0995362F0037C2E1 /* OOCocoa.h in Headers */, - 1AA08611182578B8007CCAEB /* OOOpenAL.h in Headers */, - 1AB6963C191D85F600E4B232 /* OOStandaloneAtmosphereGenerator.h in Headers */, - 25161158099544390037C2E1 /* AI.h in Headers */, - 2516115D099544390037C2E1 /* GameController.h in Headers */, - 25161162099544390037C2E1 /* OOTrumble.h in Headers */, - 25161168099544390037C2E1 /* OOSound.h in Headers */, - 2516116E099544390037C2E1 /* OOCharacter.h in Headers */, - 25161179099544390037C2E1 /* GuiDisplayGen.h in Headers */, - 2516117E099544390037C2E1 /* HeadUpDisplay.h in Headers */, - 2516118C099544390037C2E1 /* ResourceManager.h in Headers */, - 25161196099544390037C2E1 /* Universe.h in Headers */, - 25F46752099695D5009483BF /* OoliteApp.h in Headers */, - 2576E7B309B4F418007410F7 /* MyOpenGLView.h in Headers */, - 2512833F09BA27C100F43D55 /* Octree.h in Headers */, - 2512834209BA27EC00F43D55 /* OOMeshToOctreeConverter.h in Headers */, - 1AA08608182578AF007CCAEB /* OOALSoundDecoder.h in Headers */, - 2512834609BA281500F43D55 /* CollisionRegion.h in Headers */, - 083325DD09DDBCDE00F5B8E4 /* OOColor.h in Headers */, - 1A8A37570B960337007D20B8 /* NSMutableDictionaryOOExtensions.h in Headers */, - 1A8A394F0B96229C007D20B8 /* NSFileManagerOOExtensions.h in Headers */, - 1A8A3A380B962AEF007D20B8 /* NSScannerOOExtensions.h in Headers */, - 1A38B4AC0B988532001ED4A0 /* OOLogging.h in Headers */, - 1A231A180B9D8B1B00EF0852 /* OOCacheManager.h in Headers */, - 1A29967E0B9F064C002D2149 /* OOCache.h in Headers */, - 1A9400C00BAF0EDB005F6CF3 /* OOStringParsing.h in Headers */, - 1A9403D00BAF36C3005F6CF3 /* OOFunctionAttributes.h in Headers */, - 1A9404270BAF3DED005F6CF3 /* OOCollectionExtractors.h in Headers */, - 1A9404660BAF42BF005F6CF3 /* OOPListParsing.h in Headers */, - 1A9404A30BAF462D005F6CF3 /* OOVector.h in Headers */, - 1A9405380BAF4FA6005F6CF3 /* OOMatrix.h in Headers */, - 1A94057F0BAF52AD005F6CF3 /* OOQuaternion.h in Headers */, - 1A94062B0BAF6170005F6CF3 /* OOBoundingBox.h in Headers */, - 1A9406840BAF66D6005F6CF3 /* OOVoxel.h in Headers */, - 1AA08604182578AF007CCAEB /* OOALSound.h in Headers */, - 1A9406B40BAF67BF005F6CF3 /* OOTriangle.h in Headers */, - 1AB01ABE0BB15AED00F1B949 /* OOTextureScaling.h in Headers */, - 1AB01BBB0BB16A8A00F1B949 /* OOFastArithmetic.h in Headers */, - 1A451D8D0BB1BD2A004CD72F /* OOMaths.h in Headers */, - 1A5DB1EA0BBD8F0000D57389 /* OOConstToString.h in Headers */, - 1A5DBAA60BC000DC00D57389 /* OOJavaScriptEngine.h in Headers */, - 1A5DBAA80BC000DC00D57389 /* OOJSScript.h in Headers */, - 1A5D588B1825241800C779AE /* unzip.h in Headers */, - 1A5DBAAA0BC000DC00D57389 /* OOPListScript.h in Headers */, - 1A5DBAAD0BC000DC00D57389 /* OOScript.h in Headers */, - 1A5DBD580BC17F0900D57389 /* NSStringOOExtensions.h in Headers */, - 1A3AFF1F0BC4462200B5E2D9 /* OOJSVector.h in Headers */, - 1A3A04620BC547DC00B5E2D9 /* OOTypes.h in Headers */, - 1A2A8C150BC65FFD001E00FB /* OOJSEntity.h in Headers */, - 1A2A8D3A0BC6765F001E00FB /* EntityOOJavaScriptExtensions.h in Headers */, - 1A2A8E030BC67CCC001E00FB /* OOWeakReference.h in Headers */, - 1A2A91520BC6BC66001E00FB /* OOJSQuaternion.h in Headers */, - 1A71EA8D0BCF8C6C00CD5C13 /* OOXMLExtensions.h in Headers */, - 1A26D0AE0BCF9CF80073F257 /* ShipEntityAI.h in Headers */, - 1A26D0B20BCF9CF80073F257 /* PlayerEntity.h in Headers */, - 1A26D0B40BCF9CF80073F257 /* ShipEntity.h in Headers */, - 1A26D0B50BCF9CF80073F257 /* PlayerEntityScriptMethods.h in Headers */, - 1A26D0B70BCF9CF80073F257 /* SkyEntity.h in Headers */, - 1A26D0B90BCF9CF80073F257 /* OOBreakPatternEntity.h in Headers */, - 1A26D0BC0BCF9CF80073F257 /* PlayerEntityContracts.h in Headers */, - 1A26D0BE0BCF9CF80073F257 /* PlanetEntity.h in Headers */, - 1A26D0C10BCF9CF80073F257 /* Entity.h in Headers */, - 1AD2E31618F17BC700239EBB /* OOShipLibraryDescriptions.h in Headers */, - 1A26D0C50BCF9CF80073F257 /* WormholeEntity.h in Headers */, - 1A92AB711846403200C507E3 /* OOJSExhaustPlume.h in Headers */, - 1A26D0C70BCF9CF80073F257 /* StationEntity.h in Headers */, - 1A26D0C80BCF9CF80073F257 /* PlayerEntityControls.h in Headers */, - 1A26D0CA0BCF9CF80073F257 /* PlayerEntitySound.h in Headers */, - 1AA59C6C1780396C007C7373 /* OOJSWormhole.h in Headers */, - 1A26D0CB0BCF9CF80073F257 /* DustEntity.h in Headers */, - 1A26D0CE0BCF9CF80073F257 /* PlayerEntityLegacyScriptEngine.h in Headers */, - 1A26D0CF0BCF9CF80073F257 /* PlayerEntityLoadSave.h in Headers */, - 1A26D0D40BCF9D0D0073F257 /* OOShaderMaterial.h in Headers */, - 1A26D0D70BCF9D0D0073F257 /* OOMaterial.h in Headers */, - 1A26D0DC0BCF9D1E0073F257 /* OOShaderUniform.h in Headers */, - 1A26D0DE0BCF9D1E0073F257 /* OOShaderProgram.h in Headers */, - 1A26D0E70BCF9D3B0073F257 /* OOTexture.h in Headers */, - 1A26D0E90BCF9D3B0073F257 /* OOTextureLoader.h in Headers */, - 1A26D0EA0BCF9D3B0073F257 /* OOPNGTextureLoader.h in Headers */, - 1A43234E0BCFC9BB00F65914 /* OOOpenGLExtensionManager.h in Headers */, - 1ADBA5500BD0F173008FC99C /* OOBasicMaterial.h in Headers */, - 1A2A16690BD10B1200152975 /* OOSingleTextureMaterial.h in Headers */, - 1A2A17D60BD1587D00152975 /* OOCPUInfo.h in Headers */, - 1A2A1B090BD276A900152975 /* OOEntityWithDrawable.h in Headers */, - 1A2A1B160BD2774300152975 /* OODrawable.h in Headers */, - 1A2A1CAC0BD2914F00152975 /* OOMesh.h in Headers */, - 1A2A1DEC0BD2A28E00152975 /* OOMacroOpenGL.h in Headers */, - 1AED2D0C0C04586C004A1118 /* OOGraphicsResetManager.h in Headers */, - 1A15049E0C12CA070032F3E8 /* OOProbabilisticTextureManager.h in Headers */, - 1AC775E20C2DD4E900ECFF3B /* OODebugGLDrawing.h in Headers */, - 1A5E46300C32DACE008104B4 /* OOShaderUniformMethodType.h in Headers */, - 1A5D58881825241800C779AE /* ioapi.h in Headers */, - 1A7D833A0C40147800E4A5F5 /* OOAsyncQueue.h in Headers */, - 1AB2AAFA0C4CE0CC0008CF4E /* OOOXPVerifier.h in Headers */, - 1A27DB3B0C4E349F00CB4CE8 /* OOOXPVerifierStageInternal.h in Headers */, - 1A27DB3C0C4E349F00CB4CE8 /* OOOXPVerifierStage.h in Headers */, - 1A27DB420C4E34B300CB4CE8 /* OOFileScannerVerifierStage.h in Headers */, - 1A7D3A180C4F6162008EDC33 /* OOCheckRequiresPListVerifierStage.h in Headers */, - 1A7D3B9B0C4F7843008EDC33 /* OOCheckDemoShipsPListVerifierStage.h in Headers */, - 1A7D3C490C4F818C008EDC33 /* OOCheckEquipmentPListVerifierStage.h in Headers */, - 1A7D3D2B0C4F8D02008EDC33 /* OOTextureVerifierStage.h in Headers */, - 1AA0860C182578AF007CCAEB /* OOALStreamedSound.h in Headers */, - 1A7D41870C516B90008EDC33 /* OOModelVerifierStage.h in Headers */, - 1A7D41E20C516E9E008EDC33 /* OOCheckShipDataPListVerifierStage.h in Headers */, - 1A6DD1230C57B5BC00A892F4 /* OOPListSchemaVerifier.h in Headers */, - 1A3ACFEB0C5FF33A00EC50A7 /* OOJSShip.h in Headers */, - 1A736BD30C61E9370097AC37 /* OOJSPlayer.h in Headers */, - 1A736C7F0C61FD220097AC37 /* OOJSCall.h in Headers */, - 1A73712D0C623DAE0097AC37 /* OOJSStation.h in Headers */, - 1A7376BE0C64AE330097AC37 /* OOJSSystem.h in Headers */, - 1A4FB3350C8DC86800DC8E1F /* OOJSOolite.h in Headers */, - 1AA0860A182578AF007CCAEB /* OOALSoundMixer.h in Headers */, - 1AA08602182578AF007CCAEB /* OOALMusic.h in Headers */, - 1ACEA3490C91507000C7CE97 /* OORoleSet.h in Headers */, - 1ACEA6BF0C91DA3E00C7CE97 /* OOJSGlobal.h in Headers */, - 1ACEA7280C91DF2800C7CE97 /* OOJSMissionVariables.h in Headers */, - 1ACEA7AA0C91E32800C7CE97 /* OOJSMission.h in Headers */, - 1A6B1EF00C9AA5C6000717CF /* OOScriptTimer.h in Headers */, - 1A6B1F370C9AAA60000717CF /* OOPriorityQueue.h in Headers */, - 1A6B228D0C9B40D4000717CF /* OOJSTimer.h in Headers */, - 1A6B25EE0C9C2746000717CF /* OOJSClock.h in Headers */, - 1A2DA2AB0CB4CB5C00DE6823 /* OODebugTCPConsoleProtocol.h in Headers */, - B3B46C881A0D053D00D6C39B /* OOSystemDescriptionManager.h in Headers */, - 1A2DA2AE0CB4CB5C00DE6823 /* OODebugTCPConsoleClient.h in Headers */, - 1A2DA2AF0CB4CB5C00DE6823 /* OOTCPStreamDecoderAbstractionLayer.h in Headers */, - 1A2DA2B00CB4CB5C00DE6823 /* OOTCPStreamDecoder.h in Headers */, - 1A2DA34D0CB4D0D800DE6823 /* OOJSConsole.h in Headers */, - 1A2DA34E0CB4D0D800DE6823 /* OODebugMonitor.h in Headers */, - 1A2DA3550CB4D10800DE6823 /* OODebuggerInterface.h in Headers */, - 1A2DA3EF0CB4E84900DE6823 /* OODebugSupport.h in Headers */, - 1A43A0CC0CB91D2C00D0E239 /* OOJSPlanet.h in Headers */, - 1A43A1860CB9243B00D0E239 /* OOEntityFilterPredicate.h in Headers */, - 1A92AB7A1846403F00C507E3 /* OOJSFlasher.h in Headers */, - 1A7C75C50CC39EC9005D0AA2 /* OOJSSun.h in Headers */, - 1AD1F5000CD9E83800EAE520 /* NSThreadOOExtensions.h in Headers */, - 1ABB688C0D044306008BE96D /* OOLoggingExtended.h in Headers */, - 1A1D212E0D2BD4C100F4DEC2 /* bsd_string.h in Headers */, - 1AC545060D4D228400C90E5B /* OOEncodingConverter.h in Headers */, - 1A28AA160D55438200BC0CE4 /* OOJSSound.h in Headers */, - 1AB784F90D554F7B00517983 /* OOJSSoundSource.h in Headers */, - 1A60AFB70D56093B0070510D /* OOMusicController.h in Headers */, - 1AB4AEB80D688AD9003076D6 /* OOLogHeader.h in Headers */, - 1A0DA2EE0D71D280009B0970 /* OOJSSpecialFunctions.h in Headers */, - 1A5218DA0D72EC21000865E9 /* OOSpatialReference.h in Headers */, - 1A03658A0D7CA05000B5F46F /* OOSkyDrawable.h in Headers */, - B33A44F1199E6745000B45AE /* OOOpenGLMatrixManager.h in Headers */, - 1A1616620D7DCFDC0094AE5B /* OOFilteringEnumerator.h in Headers */, - 1ACBF0AD0D82F79600CC005F /* OOSoundSourcePool.h in Headers */, - 1A7BA8830D843485003C6CA3 /* ShipEntityScriptMethods.h in Headers */, - 1A0479E90DC9F81000EE1CD0 /* OOShipRegistry.h in Headers */, - 1A047A450DCA0F4F00EE1CD0 /* NSDictionaryOOExtensions.h in Headers */, - 1A047B7E0DCB3D7500EE1CD0 /* OOProbabilitySet.h in Headers */, - 1A9322970DF53C33003FD306 /* OOJSSystemInfo.h in Headers */, - 1A62F0FE0E26A2A000897506 /* OOEquipmentType.h in Headers */, - 1A54AB530E3E17A1001EB817 /* OOJSPlayerShip.h in Headers */, - 1A71D8AB0E5F17410088C456 /* OOSoundSource.h in Headers */, - 1A7B967F0E620C9E00322821 /* OOSoundInternal.h in Headers */, - 1A8BB8EA0E8311F900122974 /* OONullTexture.h in Headers */, - 4F1F15631B0FCC17001C1591 /* OOCheckJSSyntaxVerifierStage.h in Headers */, - 1AB812900E90179D00A84923 /* TextureStore.h in Headers */, - 1AB8130A0E90D8E500A84923 /* OOLogOutputHandler.h in Headers */, - 1AC27A0F0EA7E9940054E5F0 /* OOJSEquipmentInfo.h in Headers */, - 1ABDBA3C0EB365D90086BC3D /* OOIsNumberLiteral.h in Headers */, - 1A0729D90EF56D1200B0F925 /* OOConvertSystemDescriptions.h in Headers */, - 1A0729FE0EF5796500B0F925 /* OldSchoolPropertyListWriting.h in Headers */, - 1ABC03ED0EF86110003B740A /* OOCrosshairs.h in Headers */, - 1ABC47FE0F155F0500B977AD /* OOJSFunction.h in Headers */, - 1AAF56170F1A198400A2F2E6 /* Comparison.h in Headers */, - 1A31595A0F1B895000328E4A /* OOAIStateMachineVerifierStage.h in Headers */, - 1ABAD7320F350B3400FD2CBF /* OOShipGroup.h in Headers */, - 1A11F84B0F35F60C001C886C /* OOJSShipGroup.h in Headers */, - 1A20F7060F36EE0500156DE9 /* OOExcludeObjectEnumerator.h in Headers */, - 1ADA8AB30F42DBA80001BEC9 /* OODeepCopy.h in Headers */, - 1A43F28B105170A8003FDE8B /* OONSOperation.h in Headers */, - 1AE242C51054226900EAA7F2 /* OOFlasherEntity.h in Headers */, - 1AE24373105439B500EAA7F2 /* OOLightParticleEntity.h in Headers */, - 1A11273B105994D000DF9D12 /* OOExhaustPlumeEntity.h in Headers */, - 1A1F2842105AAB7900ADB8C5 /* OOSparkEntity.h in Headers */, - 1A3BA259106555D100C5C6F3 /* NSNumberOOExtensions.h in Headers */, - 1A00C65510663D3700A8737D /* OOProfilingStopwatch.h in Headers */, - 1A00C7BA10667D3100A8737D /* OOECMBlastEntity.h in Headers */, - 1A4F917A19CEDDB200E18B65 /* OOCommodityMarket.h in Headers */, - 1A00C7DF1066814C00A8737D /* OOAsyncWorkManager.h in Headers */, - 1A817CFC106D232100AA2F97 /* OOPlasmaShotEntity.h in Headers */, - 1A817DA0106D3FF000AA2F97 /* OOPlasmaBurstEntity.h in Headers */, - 1A817DC3106D443B00AA2F97 /* OOFlashEffectEntity.h in Headers */, - 2B4CDFEC107B3D8400526C98 /* OOJSManifest.h in Headers */, - 1AB9AE8B107F459B00B6F3CE /* OOPolygonSprite.h in Headers */, - 1AA7FCAB10C2B9BA0058FBED /* OOPlanetDrawable.h in Headers */, - 1AA7FCB010C2BA3B0058FBED /* OOPlanetData.h in Headers */, - 1AA7FD1E10C2C3750058FBED /* OOPlanetEntity.h in Headers */, - 1AA7FDDC10C2DC800058FBED /* OOSunEntity.h in Headers */, - 1A4F917D19CEDDC600E18B65 /* OOCommodities.h in Headers */, - 1AA7FE2D10C2F2070058FBED /* OOTextureGenerator.h in Headers */, - 1AA7FE3410C2F26A0058FBED /* OOPlanetTextureGenerator.h in Headers */, - 1ADA564810CD68D800E891B8 /* OOStellarBody.h in Headers */, - 1A01574311034A86008EE36A /* ShipEntityLoadRestore.h in Headers */, - 1A7E3189113ED496009AAB6D /* ProxyPlayerEntity.h in Headers */, - 1A05AFCD1879C2B800AFA7D1 /* OOOXZManager.h in Headers */, - 1A87063E1172029F003FDD2A /* OODebugFlags.h in Headers */, - 1A3D03151173536C005BF5E6 /* OOMultiTextureMaterial.h in Headers */, - 1A3D034A11736EDA005BF5E6 /* OOMaterialConvenienceCreators.h in Headers */, - 1AECE9E01177959F003986A8 /* OOPixMap.h in Headers */, - 1A8C981E117A380800D8AB7E /* OOCombinedEmissionMapGenerator.h in Headers */, - 1A1F7DB7117B5D8200332757 /* OOMaterialSpecifier.h in Headers */, - 1A19783E117F81B10060DB56 /* OOPixMapChannelOperations.h in Headers */, - 1A95C040118A450E002EE302 /* OOConvertCubeMapToLatLong.h in Headers */, - 4F1F155F1B0FCB76001C1591 /* OOCheckPListSyntaxVerifierStage.h in Headers */, - 1ACB1D18118DCBC0007B9A1F /* OOConcreteTexture.h in Headers */, - 1ACB1D1C118DCE5A007B9A1F /* OOTextureInternal.h in Headers */, - 1AEB491A119D5AAA007BD514 /* OORegExpMatcher.h in Headers */, - 1A062C8911B28D8A00727C1D /* NSObjectOOExtensions.h in Headers */, - 1AABA83E11B941D1003487D5 /* OOPixMapTextureLoader.h in Headers */, - 1A11C2B111CFC35000F3EE77 /* OOJSEngineTimeManagement.h in Headers */, - 1A69FFF718A64CF70062EAC8 /* OOJoystickProfile.h in Headers */, - 1A143A4811EF22C5001BAB8D /* JAPersistentFileReference.h in Headers */, - 1A69FFEE18A64C320062EAC8 /* PlayerEntityStickProfile.h in Headers */, - 1A09EF4512BD0BCA00BF7F48 /* PlayerEntityKeyMapper.h in Headers */, - 1AA08606182578AF007CCAEB /* OOALSoundChannel.h in Headers */, - 1AA085FE182578AF007CCAEB /* OOALBufferedSound.h in Headers */, - 1AB5E1EF12BD628500C334DD /* OOJoystickManager.h in Headers */, - 1A35257212E1FFA900244C9D /* OOConstToJSString.h in Headers */, - 1AEF57D312E51DDB00546444 /* OOJSEngineNativeWrappers.h in Headers */, - 1A127F4312EC6A4400B65D9F /* OOTextureSprite.h in Headers */, - 1A1280F812ECA4ED00B65D9F /* OOJSFont.h in Headers */, - 1AE7325012F75D470045513D /* OOLaserShotEntity.h in Headers */, - 1A4DF35312FDF0410027F43D /* OOParticleSystem.h in Headers */, - 1A033FB813268ABB006F9DB7 /* OOPDFView.h in Headers */, - 1A54115B14B8913E00B8A4BE /* OOMacJoystickManager.h in Headers */, - 1A6F665314DF323900695C11 /* OODefaultShaderSynthesizer.h in Headers */, - 1ABA415E15ACBB6700F7E841 /* DockEntity.h in Headers */, - 1ABA416215ADAB8D00F7E841 /* OOJSDock.h in Headers */, - 1AF4AF4A15B858AA009243BE /* OOWeakSet.h in Headers */, - 1AE1A94115D2C4E4003F4D56 /* OOFullScreenController.h in Headers */, - 1A9FCF2315DAC8E100E965D5 /* OOMacSnowLeopardFullScreenController.h in Headers */, - 1A97528F15DECA6600108FA5 /* OOFullScreenWindow.h in Headers */, - 1A72F86515E002E200281337 /* OOMouseInteractionMode.h in Headers */, - 1A72F86915E14F1100281337 /* OOMacSystemStandardFullScreenController.h in Headers */, - 1A72F86E15E5655D00281337 /* OOVisualEffectEntity.h in Headers */, - 1A72F87215E5658E00281337 /* OOJSVisualEffect.h in Headers */, - 1A401F8815E7AF7B004CDF95 /* OOPrimaryWindow.h in Headers */, - 1A38E9E31603C7A500EE19F1 /* OOJSInterfaceDefinition.h in Headers */, - 1A38E9E71603C7A500EE19F1 /* OOJSGuiScreenKeyDefinition.h in Headers */, - 1AAEE9DA161F7523003A5A1E /* OOStringExpander.h in Headers */, - 1AD8522517947BD600CBE743 /* OOHPVector.h in Headers */, - 1AD8522E17947C9500CBE743 /* OOJSPopulatorDefinition.h in Headers */, - 1A9438CF17F84C560011F80B /* OOExplosionCloudEntity.h in Headers */, - 1AA08612182578B8007CCAEB /* OOOpenALController.h in Headers */, - 1A5D5893182525DE00C779AE /* NSDataOOExtensions.h in Headers */, - 1A1F6D0D180AC324002AD52E /* OOWaypointEntity.h in Headers */, - 1A4F918019CEDDFB00E18B65 /* OODebugStandards.h in Headers */, - 1A1F6D16180AC371002AD52E /* OOJSWaypoint.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 0865423506B8447D000CA0AB /* Oolite */ = { - isa = PBXNativeTarget; - buildConfigurationList = 08B31CAC08FE63D70038D42F /* Build configuration list for PBXNativeTarget "Oolite" */; - buildPhases = ( - 1AE8836A12EF90540075814F /* Update Sparkle */, - 0865423606B8447D000CA0AB /* Headers */, - 0865430306B8447D000CA0AB /* Sources */, - 0865431B06B8447D000CA0AB /* Frameworks */, - 0865424C06B8447D000CA0AB /* Resources */, - 1A5BF29C0916D49800BF238F /* Copy MDImporter */, - 1A2CC5F118293E380060285F /* Copy Game Resources */, - 1A6D58B6182D5F3600BFB44D /* Generate Manifest */, - 1AA2E7471191E4B400DFBA23 /* Copy Schemata */, - 1AE8837812EF91880075814F /* Copy Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 1AB7763512CA33FB001478BB /* PBXTargetDependency */, - 1AE3455A12CB77CB00FD8C62 /* PBXTargetDependency */, - 1AE3455C12CB77CD00FD8C62 /* PBXTargetDependency */, - 1A3E01A911C574E1000FF226 /* PBXTargetDependency */, - 1A78B5DC12D74D0600D42EE7 /* PBXTargetDependency */, - ); - name = Oolite; - productInstallPath = "$(HOME)/Applications"; - productName = Oolite; - productReference = 0865432206B8447D000CA0AB /* Oolite.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 29B97313FDCFA39411CA2CEA /* Project object */ = { - isa = PBXProject; - attributes = { - BuildIndependentTargetsInParallel = YES; - LastUpgradeCheck = 0730; - ORGANIZATIONNAME = "the Oolite team"; - }; - buildConfigurationList = 08B31CB008FE63D70038D42F /* Build configuration list for PBXProject "Oolite" */; - compatibilityVersion = "Xcode 6.3"; - developmentRegion = English; - hasScannedForEncodings = 1; - knownRegions = ( - English, - Japanese, - French, - German, - ); - mainGroup = 29B97314FDCFA39411CA2CEA /* Oolite_GUSTO */; - projectDirPath = ""; - projectReferences = ( - { - ProductGroup = 1A7E39FF180AC8B100576095 /* Products */; - ProjectRef = 1A0519340C7CCAC900BA5CCA /* DebugBundle.xcodeproj */; - }, - { - ProductGroup = 1AB775FD12CA2E53001478BB /* Products */; - ProjectRef = 1AB775FC12CA2E53001478BB /* libjs.xcodeproj */; - }, - { - ProductGroup = 1A78B5D512D74CF900D42EE7 /* Products */; - ProjectRef = 1A78B5D412D74CF900D42EE7 /* libpng.xcodeproj */; - }, - { - ProductGroup = 1AE3454C12CB77A700FD8C62 /* Products */; - ProjectRef = 1AE3454B12CB77A700FD8C62 /* Ogg.xcodeproj */; - }, - { - ProductGroup = 1A01BCE011C569DF0011197F /* Products */; - ProjectRef = 1A01BCDF11C569DF0011197F /* Oolite-docktile.xcodeproj */; - }, - { - ProductGroup = 1A3E018F11C574AC000FF226 /* Products */; - ProjectRef = 1A3E018E11C574AC000FF226 /* Oolite-importer.xcodeproj */; - }, - { - ProductGroup = 1A1BB8A01767DD3500050283 /* Products */; - ProjectRef = 1AB2D61C15B86EA400177AAF /* OoliteUnitTests.xcodeproj */; - }, - { - ProductGroup = 1AE3455212CB77AC00FD8C62 /* Products */; - ProjectRef = 1AE3455112CB77AC00FD8C62 /* Vorbis.xcodeproj */; - }, - ); - projectRoot = ""; - targets = ( - 1AD267500C83050800B4BFD1 /* Build All */, - 0865423506B8447D000CA0AB /* Oolite */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXReferenceProxy section */ - 1A01BCE711C569DF0011197F /* Oolite.docktileplugin */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = Oolite.docktileplugin; - remoteRef = 1A01BCE611C569DF0011197F /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1A1BB8A41767DD3500050283 /* OoliteUnitTests.xctest */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = OoliteUnitTests.xctest; - remoteRef = 1A1BB8A31767DD3500050283 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1A3E019611C574AC000FF226 /* Oolite.mdimporter */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = Oolite.mdimporter; - remoteRef = 1A3E019511C574AC000FF226 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1A78B5D912D74CF900D42EE7 /* libpng_for_oolite.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libpng_for_oolite.a; - remoteRef = 1A78B5D812D74CF900D42EE7 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1A7E3A03180AC8B100576095 /* Debug.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = Debug.bundle; - remoteRef = 1A7E3A02180AC8B100576095 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1A8FA92712F0C694008FF5A2 /* jsoplengen */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = jsoplengen; - remoteRef = 1A8FA92612F0C694008FF5A2 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1A8FA92912F0C694008FF5A2 /* jskwgen */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = jskwgen; - remoteRef = 1A8FA92812F0C694008FF5A2 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1AB7760212CA2E53001478BB /* libjs_for_oolite.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libjs_for_oolite.a; - remoteRef = 1AB7760112CA2E53001478BB /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1AB7760412CA2E53001478BB /* libnspr4_for_oolite.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libnspr4_for_oolite.a; - remoteRef = 1AB7760312CA2E53001478BB /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1AD05EBA12CD1B4700704F1D /* jsapi-tests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = "jsapi-tests"; - remoteRef = 1AD05EB912CD1B4700704F1D /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1AE3455012CB77A700FD8C62 /* libogg_for_oolite.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libogg_for_oolite.a; - remoteRef = 1AE3454F12CB77A700FD8C62 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1AE3455612CB77AC00FD8C62 /* libvorbis_for_oolite.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libvorbis_for_oolite.a; - remoteRef = 1AE3455512CB77AC00FD8C62 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; -/* End PBXReferenceProxy section */ - -/* Begin PBXResourcesBuildPhase section */ - 0865424C06B8447D000CA0AB /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1A2315530B9C778400EF0852 /* splash.png in Resources */, - 25F3E8A70994FE65002F25FD /* oolite-document.icns in Resources */, - 25F3E8A80994FE65002F25FD /* oolite-expansion-document.icns in Resources */, - 25F3E8A90994FE65002F25FD /* oolite-icon.icns in Resources */, - 25F3E8B40994FE9B002F25FD /* InfoPlist.strings in Resources */, - 1AE8838012EF91E80075814F /* SparkleVerificationKey.pem in Resources */, - 1A033FA313268821006F9DB7 /* OoliteReadMe.pdf in Resources */, - 1A504D9114DC964A003E5363 /* Oolite.xib in Resources */, - 1A115ED5158CFB4D005842DA /* splash@2x.png in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 1A2CC5F118293E380060285F /* Copy Game Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Copy Game Resources"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"$SRCROOT/tools/resource-management/copy-game-resources\" \"$SRCROOT/Resources\" \"$GAME_RESOURCES_DIR\"\n"; - }; - 1A6D58B6182D5F3600BFB44D /* Generate Manifest */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Generate Manifest"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "tools/mkmanifest.sh > \"$GAME_RESOURCES_DIR/manifest.plist\""; - }; - 1A7E3A06180AC8D400576095 /* Conditionally copy Debug Bundle */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/Debug.bundle", - ); - name = "Conditionally copy Debug Bundle"; - outputPaths = ( - "$(BUILT_PRODUCTS_DIR)/Oolite.app/Contents/PlugIns/Debug.bundle", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "if [ $OOLITE_INCUDE_DEBUG_BUNDLE == 0 ]; then\n exit 0\nfi\n\nif [ -e $SCRIPT_OUTPUT_FILE_0 ]; then\n rm -rf $SCRIPT_OUTPUT_FILE_0\nfi\n\nditto $SCRIPT_INPUT_FILE_0 $SCRIPT_OUTPUT_FILE_0\n"; - }; - 1AA2E7471191E4B400DFBA23 /* Copy Schemata */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(SRCROOT)/Schemata/shipdataEntrySchema.plist", - ); - name = "Copy Schemata"; - outputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(PRODUCT_NAME).app/Contents/Resources/Schemata/shipdataEntrySchema.plist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "TARGET_DIR=\"$BUILT_PRODUCTS_DIR/$PRODUCT_NAME.app/Contents/Resources/Schemata\"\n\nif [ $COPY_SCHEMATA ]\nthen\n\techo \"Copying schemata\"\n\t\n\tSRC_DIR=\"$SRCROOT/Schemata/\";\n\t\n\tif [ ! -e \"$TARGET_DIR\" ]\n\tthen\n\t\tmkdir \"$TARGET_DIR\"\n\tfi\n#\tfor item in `ls \"$SRC_DIR\"`\n#\tdo\n#\t\tcp \"$SRC_DIR/$item\" \"$TARGET_DIR/\"\n#\tdone\n#\trm \"$TARGET_DIR/README.txt\"\n\tcp \"$SRC_DIR/shipdataEntrySchema.plist\" \"$TARGET_DIR/\"\nelse\n\tif [ -e \"$TARGET_DIR\" ]\n\tthen\n\t\trmdir \"$TARGET_DIR\"\n\tfi\nfi\n"; - showEnvVarsInLog = 0; - }; - 1AE8836A12EF90540075814F /* Update Sparkle */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(SRCROOT)/deps/URLs/Sparkle.url", - ); - name = "Update Sparkle"; - outputPaths = ( - "$(SRCROOT)/deps/Cocoa-deps/Sparkle/current.url", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd \"$SRCROOT/deps/Cocoa-deps/scripts\"\n./update-sparkle.sh\n"; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 0865430306B8447D000CA0AB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 25F3E6330994F04C002F25FD /* legacy_random.c in Sources */, - 25F3E6BD0994F30A002F25FD /* main.m in Sources */, - 25161153099544390037C2E1 /* AI.m in Sources */, - 2516115A099544390037C2E1 /* OOTrumble.m in Sources */, - 2516115E099544390037C2E1 /* GameController.m in Sources */, - 2516116D099544390037C2E1 /* OOCharacter.m in Sources */, - 25161178099544390037C2E1 /* GuiDisplayGen.m in Sources */, - 2516117D099544390037C2E1 /* HeadUpDisplay.m in Sources */, - 2516118B099544390037C2E1 /* ResourceManager.m in Sources */, - 25161195099544390037C2E1 /* Universe.m in Sources */, - 25F46753099695D5009483BF /* OoliteApp.m in Sources */, - 25F4676509969672009483BF /* MyOpenGLView.m in Sources */, - 2512833E09BA27C100F43D55 /* Octree.m in Sources */, - 1A68A4A51615F4A400D7BB08 /* OOMeshToOctreeConverter.m in Sources */, - 2512834709BA281500F43D55 /* CollisionRegion.m in Sources */, - 083325DE09DDBCDE00F5B8E4 /* OOColor.m in Sources */, - 1A8A37560B960337007D20B8 /* NSMutableDictionaryOOExtensions.m in Sources */, - 1A8A394E0B96229C007D20B8 /* NSFileManagerOOExtensions.m in Sources */, - 1A8A3A390B962AEF007D20B8 /* NSScannerOOExtensions.m in Sources */, - 1A38B4AD0B988532001ED4A0 /* OOLogging.m in Sources */, - 1ADF5CEC0B9DF59A00FDB2A3 /* OOCacheManager.m in Sources */, - 1A29967F0B9F064C002D2149 /* OOCache.m in Sources */, - 1A9400BE0BAF0ECD005F6CF3 /* OOStringParsing.m in Sources */, - 1A9404260BAF3DED005F6CF3 /* OOCollectionExtractors.m in Sources */, - 1A5D58871825241800C779AE /* ioapi.c in Sources */, - 1A9404670BAF42BF005F6CF3 /* OOPListParsing.m in Sources */, - 1A9404A40BAF462D005F6CF3 /* OOVector.m in Sources */, - 1A9405390BAF4FA6005F6CF3 /* OOMatrix.m in Sources */, - 1A9405800BAF52AD005F6CF3 /* OOQuaternion.m in Sources */, - 1A9406850BAF66D6005F6CF3 /* OOVoxel.m in Sources */, - 1AB01B5F0BB1639600F1B949 /* OOTextureScaling.m in Sources */, - 1A5DB1EB0BBD8F0000D57389 /* OOConstToString.m in Sources */, - 1AD2E31718F17BC700239EBB /* OOShipLibraryDescriptions.m in Sources */, - 1A5DBAA70BC000DC00D57389 /* OOJavaScriptEngine.m in Sources */, - 1A5DBAA90BC000DC00D57389 /* OOJSScript.m in Sources */, - 1A5DBAAB0BC000DC00D57389 /* OOPListScript.m in Sources */, - 1A5DBAAE0BC000DC00D57389 /* OOScript.m in Sources */, - 1A5DBD590BC17F0900D57389 /* NSStringOOExtensions.m in Sources */, - 1AA08603182578AF007CCAEB /* OOALMusic.m in Sources */, - 1A3AFF200BC4462200B5E2D9 /* OOJSVector.m in Sources */, - 1A2A8C160BC65FFD001E00FB /* OOJSEntity.m in Sources */, - 1A2A8D3B0BC6765F001E00FB /* EntityOOJavaScriptExtensions.m in Sources */, - 1A2A8E040BC67CCC001E00FB /* OOWeakReference.m in Sources */, - 1A2A91530BC6BC66001E00FB /* OOJSQuaternion.m in Sources */, - 1A71EA8C0BCF8C6B00CD5C13 /* OOXMLExtensions.m in Sources */, - 1A26D0AC0BCF9CF80073F257 /* PlayerEntityLegacyScriptEngine.m in Sources */, - 1A26D0AD0BCF9CF80073F257 /* ShipEntityAI.m in Sources */, - B33A44F2199E6745000B45AE /* OOOpenGLMatrixManager.m in Sources */, - 1A26D0AF0BCF9CF80073F257 /* PlayerEntityScriptMethods.m in Sources */, - 1A26D0B00BCF9CF80073F257 /* PlayerEntityLoadSave.m in Sources */, - 1A26D0B10BCF9CF80073F257 /* PlayerEntity.m in Sources */, - 1A26D0B30BCF9CF80073F257 /* ShipEntity.m in Sources */, - 1A26D0B60BCF9CF80073F257 /* SkyEntity.m in Sources */, - 1A26D0B80BCF9CF80073F257 /* OOBreakPatternEntity.m in Sources */, - 1A26D0BD0BCF9CF80073F257 /* PlanetEntity.m in Sources */, - 1A26D0BF0BCF9CF80073F257 /* PlayerEntityContracts.m in Sources */, - 1A26D0C00BCF9CF80073F257 /* PlayerEntityControls.m in Sources */, - 1A26D0C40BCF9CF80073F257 /* WormholeEntity.m in Sources */, - 1A26D0C60BCF9CF80073F257 /* StationEntity.m in Sources */, - 1A26D0C90BCF9CF80073F257 /* PlayerEntitySound.m in Sources */, - 1A26D0CC0BCF9CF80073F257 /* Entity.m in Sources */, - 1A26D0CD0BCF9CF80073F257 /* DustEntity.m in Sources */, - 1A26D0D50BCF9D0D0073F257 /* OOShaderMaterial.m in Sources */, - 1A26D0D60BCF9D0D0073F257 /* OOMaterial.m in Sources */, - 1A26D0DD0BCF9D1E0073F257 /* OOShaderProgram.m in Sources */, - 1A26D0DF0BCF9D1E0073F257 /* OOShaderUniform.m in Sources */, - 1A26D0E60BCF9D3B0073F257 /* OOTexture.m in Sources */, - 1A26D0E80BCF9D3B0073F257 /* OOPNGTextureLoader.m in Sources */, - 1A26D0EB0BCF9D3B0073F257 /* OOTextureLoader.m in Sources */, - 1A43234F0BCFC9BB00F65914 /* OOOpenGLExtensionManager.m in Sources */, - 1AB6963D191D85F600E4B232 /* OOStandaloneAtmosphereGenerator.m in Sources */, - 1ADBA5510BD0F173008FC99C /* OOBasicMaterial.m in Sources */, - 1A5D588A1825241800C779AE /* unzip.c in Sources */, - 1A2A16680BD10B1200152975 /* OOSingleTextureMaterial.m in Sources */, - 1A4F917E19CEDDC600E18B65 /* OOCommodities.m in Sources */, - 1A4F917119CEDD1900E18B65 /* OODebugStandards.m in Sources */, - 1A2A17D70BD1587D00152975 /* OOCPUInfo.m in Sources */, - 1A2A1B0A0BD276A900152975 /* OOEntityWithDrawable.m in Sources */, - 1A2A1B170BD2774300152975 /* OODrawable.m in Sources */, - 1A2A1CAD0BD2914F00152975 /* OOMesh.m in Sources */, - 1A5AA3230C0098AF0029C78A /* OOOpenGL.m in Sources */, - 1AED2D0D0C04586C004A1118 /* OOGraphicsResetManager.m in Sources */, - 1A15049F0C12CA070032F3E8 /* OOProbabilisticTextureManager.m in Sources */, - 1AC775E30C2DD4E900ECFF3B /* OODebugGLDrawing.m in Sources */, - 1A5E462F0C32DACE008104B4 /* OOShaderUniformMethodType.m in Sources */, - 1A7D833B0C40147800E4A5F5 /* OOAsyncQueue.m in Sources */, - 1AB2AAFB0C4CE0CC0008CF4E /* OOOXPVerifier.m in Sources */, - 1A27DB3D0C4E349F00CB4CE8 /* OOOXPVerifierStage.m in Sources */, - 1A27DB430C4E34B300CB4CE8 /* OOFileScannerVerifierStage.m in Sources */, - 1A7D3A190C4F6162008EDC33 /* OOCheckRequiresPListVerifierStage.m in Sources */, - 1A7D3B9C0C4F7843008EDC33 /* OOCheckDemoShipsPListVerifierStage.m in Sources */, - 1A7D3C4A0C4F818C008EDC33 /* OOCheckEquipmentPListVerifierStage.m in Sources */, - 1A7D3D2C0C4F8D02008EDC33 /* OOTextureVerifierStage.m in Sources */, - 1A7D41860C516B90008EDC33 /* OOModelVerifierStage.m in Sources */, - 1A7D41E30C516E9E008EDC33 /* OOCheckShipDataPListVerifierStage.m in Sources */, - 1A6DD1240C57B5BC00A892F4 /* OOPListSchemaVerifier.m in Sources */, - 1A3ACFEC0C5FF33A00EC50A7 /* OOJSShip.m in Sources */, - 1A736BD40C61E9370097AC37 /* OOJSPlayer.m in Sources */, - 1A736C800C61FD220097AC37 /* OOJSCall.m in Sources */, - 1A73712E0C623DAE0097AC37 /* OOJSStation.m in Sources */, - 1A5D5894182525DE00C779AE /* NSDataOOExtensions.m in Sources */, - 1A7376BF0C64AE330097AC37 /* OOJSSystem.m in Sources */, - 1A4F917819CEDD7900E18B65 /* OOCommodityMarket.m in Sources */, - 1A4FB3360C8DC86800DC8E1F /* OOJSOolite.m in Sources */, - 1ACEA34A0C91507000C7CE97 /* OORoleSet.m in Sources */, - 1ACEA6C00C91DA3E00C7CE97 /* OOJSGlobal.m in Sources */, - 1ACEA7290C91DF2800C7CE97 /* OOJSMissionVariables.m in Sources */, - 1ACEA7AB0C91E32800C7CE97 /* OOJSMission.m in Sources */, - 1A6B1EF10C9AA5C6000717CF /* OOScriptTimer.m in Sources */, - 1A6B1F360C9AAA60000717CF /* OOPriorityQueue.m in Sources */, - 1AA08613182578B8007CCAEB /* OOOpenALController.m in Sources */, - 1A6B228E0C9B40D4000717CF /* OOJSTimer.m in Sources */, - 1AA085FF182578AF007CCAEB /* OOALBufferedSound.m in Sources */, - 1A6B25EF0C9C2746000717CF /* OOJSClock.m in Sources */, - 1A2DA3830CB4D25D00DE6823 /* OOTCPStreamDecoderAbstractionLayer.m in Sources */, - 1A2DA3870CB4D27400DE6823 /* OOTCPStreamDecoder.c in Sources */, - 1A2DA3920CB4D29300DE6823 /* OODebugTCPConsoleClient.m in Sources */, - 1A2DA39E0CB4D2BB00DE6823 /* OODebugMonitor.m in Sources */, - 1A2DA3A40CB4D35800DE6823 /* OOJSConsole.m in Sources */, - 1A2DA3EE0CB4E84900DE6823 /* OODebugSupport.m in Sources */, - 1A43A0CD0CB91D2C00D0E239 /* OOJSPlanet.m in Sources */, - 1A43A1870CB9243B00D0E239 /* OOEntityFilterPredicate.m in Sources */, - 1AA82C8A0CC10E700023B797 /* OOJSWorldScripts.m in Sources */, - 1A7C75C30CC39EC3005D0AA2 /* OOJSSun.m in Sources */, - 1AD1F4FF0CD9E83700EAE520 /* NSThreadOOExtensions.m in Sources */, - 4F1F155D1B0FCB11001C1591 /* OOCheckPListSyntaxVerifierStage.m in Sources */, - 1A69FFF818A64CF70062EAC8 /* OOJoystickProfile.m in Sources */, - 1AC545070D4D228400C90E5B /* OOEncodingConverter.m in Sources */, - 1A28AA170D55438200BC0CE4 /* OOJSSound.m in Sources */, - 1AB784FA0D554F7B00517983 /* OOJSSoundSource.m in Sources */, - 1A60AFB80D56093B0070510D /* OOMusicController.m in Sources */, - 1AB4AEB90D688AD9003076D6 /* OOLogHeader.m in Sources */, - 1A0DA2EF0D71D280009B0970 /* OOJSSpecialFunctions.m in Sources */, - 1A5218DE0D72ECE5000865E9 /* OOSpatialReference.m in Sources */, - 1AAB9A980D779F4500A9F424 /* OOCocoa.m in Sources */, - 1A0365890D7CA05000B5F46F /* OOSkyDrawable.m in Sources */, - 1A92AB7B1846403F00C507E3 /* OOJSFlasher.m in Sources */, - 1A1616630D7DCFDC0094AE5B /* OOFilteringEnumerator.m in Sources */, - 1ACBF0AE0D82F79800CC005F /* OOSoundSourcePool.m in Sources */, - 1A7BA8840D843485003C6CA3 /* ShipEntityScriptMethods.m in Sources */, - 1A0479EA0DC9F81000EE1CD0 /* OOShipRegistry.m in Sources */, - 1A047A460DCA0F4F00EE1CD0 /* NSDictionaryOOExtensions.m in Sources */, - 1A047B7F0DCB3D7500EE1CD0 /* OOProbabilitySet.m in Sources */, - 1A9322980DF53C33003FD306 /* OOJSSystemInfo.m in Sources */, - 1A62F0FD0E26A2A000897506 /* OOEquipmentType.m in Sources */, - 1A54AB540E3E17A1001EB817 /* OOJSPlayerShip.m in Sources */, - 1A71D8AA0E5F17410088C456 /* OOSoundSource.m in Sources */, - 1A8BB8EB0E8311F900122974 /* OONullTexture.m in Sources */, - 1AB8128F0E90179C00A84923 /* TextureStore.m in Sources */, - 1AB813090E90D8E500A84923 /* OOLogOutputHandler.m in Sources */, - 1AC27A100EA7E9940054E5F0 /* OOJSEquipmentInfo.m in Sources */, - 1ABDBA3B0EB365D90086BC3D /* OOIsNumberLiteral.m in Sources */, - 1A0729DA0EF56D1200B0F925 /* OOConvertSystemDescriptions.m in Sources */, - 1A0729FF0EF5796500B0F925 /* OldSchoolPropertyListWriting.m in Sources */, - 1ABC03EE0EF86110003B740A /* OOCrosshairs.m in Sources */, - 1ABC47FF0F155F0500B977AD /* OOJSFunction.m in Sources */, - 1A3159590F1B894F00328E4A /* OOAIStateMachineVerifierStage.m in Sources */, - 1A3C67FB0F1C910E0000D45B /* OOLegacyScriptWhitelist.m in Sources */, - 1ABAD7310F350B3400FD2CBF /* OOShipGroup.m in Sources */, - 1A11F84A0F35F60C001C886C /* OOJSShipGroup.m in Sources */, - 1A20F7070F36EE0500156DE9 /* OOExcludeObjectEnumerator.m in Sources */, - 1A92AB721846403200C507E3 /* OOJSExhaustPlume.m in Sources */, - 1ADA8AB40F42DBA80001BEC9 /* OODeepCopy.m in Sources */, - 1AE242C61054226900EAA7F2 /* OOFlasherEntity.m in Sources */, - 1AE24374105439B500EAA7F2 /* OOLightParticleEntity.m in Sources */, - 1A11273C105994D000DF9D12 /* OOExhaustPlumeEntity.m in Sources */, - 1A1F2843105AAB7900ADB8C5 /* OOSparkEntity.m in Sources */, - 1AA0860D182578AF007CCAEB /* OOALStreamedSound.m in Sources */, - 1AA0860B182578AF007CCAEB /* OOALSoundMixer.m in Sources */, - 1A3BA25A106555D100C5C6F3 /* NSNumberOOExtensions.m in Sources */, - 1A00C65610663D3700A8737D /* OOProfilingStopwatch.m in Sources */, - 1AA08609182578AF007CCAEB /* OOALSoundDecoder.m in Sources */, - 1A00C7BB10667D3100A8737D /* OOECMBlastEntity.m in Sources */, - 1A00C7E01066814C00A8737D /* OOAsyncWorkManager.m in Sources */, - 1A817CFD106D232100AA2F97 /* OOPlasmaShotEntity.m in Sources */, - 1A817DA1106D3FF000AA2F97 /* OOPlasmaBurstEntity.m in Sources */, - 1A817DC4106D443B00AA2F97 /* OOFlashEffectEntity.m in Sources */, - 2B4CDFED107B3D8400526C98 /* OOJSManifest.m in Sources */, - B3B46C8A1A0D053D00D6C39B /* OOSystemDescriptionManager.m in Sources */, - 1AB9AE8C107F459B00B6F3CE /* OOPolygonSprite.m in Sources */, - 1A6A963310AEEC5D0065D0F3 /* AIGraphViz.m in Sources */, - 1AA7FCAC10C2B9BA0058FBED /* OOPlanetDrawable.m in Sources */, - 1AA7FCAF10C2BA3B0058FBED /* OOPlanetData.c in Sources */, - 1AA7FD1F10C2C3750058FBED /* OOPlanetEntity.m in Sources */, - 1AA7FDDD10C2DC800058FBED /* OOSunEntity.m in Sources */, - 1AA7FE2E10C2F2070058FBED /* OOTextureGenerator.m in Sources */, - 1AA7FE3510C2F26A0058FBED /* OOPlanetTextureGenerator.m in Sources */, - 1A01574411034A86008EE36A /* ShipEntityLoadRestore.m in Sources */, - 1A7E317C113ED37C009AAB6D /* EntityShaderBindings.m in Sources */, - 1A7E318A113ED496009AAB6D /* ProxyPlayerEntity.m in Sources */, - 1A3D03161173536C005BF5E6 /* OOMultiTextureMaterial.m in Sources */, - 1A3D034B11736EDA005BF5E6 /* OOMaterialConvenienceCreators.m in Sources */, - 1AECE9EF11779910003986A8 /* OOPixMap.m in Sources */, - 1A8C981D117A380800D8AB7E /* OOCombinedEmissionMapGenerator.m in Sources */, - 1AA08605182578AF007CCAEB /* OOALSound.m in Sources */, - 1A1F7DB6117B5D8100332757 /* OOMaterialSpecifier.m in Sources */, - 1A19783F117F81B10060DB56 /* OOPixMapChannelOperations.m in Sources */, - 1A95C041118A450E002EE302 /* OOConvertCubeMapToLatLong.m in Sources */, - 1ACB1D19118DCBC0007B9A1F /* OOConcreteTexture.m in Sources */, - 1AEB491B119D5AAA007BD514 /* OORegExpMatcher.m in Sources */, - 1A062C8A11B28D8A00727C1D /* NSObjectOOExtensions.m in Sources */, - 1A69FFEF18A64C320062EAC8 /* PlayerEntityStickProfile.m in Sources */, - 1AABA83F11B941D1003487D5 /* OOPixMapTextureLoader.m in Sources */, - 1A11C2B211CFC35000F3EE77 /* OOJSEngineTimeManagement.m in Sources */, - 1A143A4911EF22C5001BAB8D /* JAPersistentFileReference.m in Sources */, - 1A7038A212BB9F5A0015CCDC /* dummy.cpp in Sources */, - 1A09EF4412BD0BCA00BF7F48 /* PlayerEntityStickMapper.m in Sources */, - 1A09EF4612BD0BCA00BF7F48 /* PlayerEntityKeyMapper.m in Sources */, - 1AB5E1F012BD628500C334DD /* OOJoystickManager.m in Sources */, - 1A05AFCE1879C2B800AFA7D1 /* OOOXZManager.m in Sources */, - 1A0942CE12D7D5B9003B6273 /* OOJSFrameCallbacks.m in Sources */, - 1AC0F29E12E1DADC00ECBBB0 /* OOJSEngineDebuggerHelpers.m in Sources */, - 1A35257312E1FFA900244C9D /* OOConstToJSString.m in Sources */, - 1A127F4412EC6A4400B65D9F /* OOTextureSprite.m in Sources */, - 4F1F15611B0FCBFA001C1591 /* OOCheckJSSyntaxVerifierStage.m in Sources */, - 1A1280F912ECA4ED00B65D9F /* OOJSFont.m in Sources */, - 1AE7325112F75D470045513D /* OOLaserShotEntity.m in Sources */, - 1A97D77F12FDBB9B0009D74A /* OOQuiriumCascadeEntity.m in Sources */, - 1AA08607182578AF007CCAEB /* OOALSoundChannel.m in Sources */, - 1A4DF25D12FDC4880027F43D /* OORingEffectEntity.m in Sources */, - 1A4DF35412FDF0410027F43D /* OOParticleSystem.m in Sources */, - 1A033FB913268ABB006F9DB7 /* OOPDFView.m in Sources */, - 1A54115C14B8913E00B8A4BE /* OOMacJoystickManager.m in Sources */, - 1A6F665414DF323900695C11 /* OODefaultShaderSynthesizer.m in Sources */, - 1ABA415F15ACBB6700F7E841 /* DockEntity.m in Sources */, - 1AA59C6D1780396C007C7373 /* OOJSWormhole.m in Sources */, - 1ABA416315ADAB8D00F7E841 /* OOJSDock.m in Sources */, - 1AF4AF4B15B858AA009243BE /* OOWeakSet.m in Sources */, - 1AE1A94215D2C4E4003F4D56 /* OOFullScreenController.m in Sources */, - 1A9FCF2415DAC8E100E965D5 /* OOMacSnowLeopardFullScreenController.m in Sources */, - 1A9FCF2615DAC9BC00E965D5 /* GameController+FullScreen.m in Sources */, - 1A97529015DECA6600108FA5 /* OOFullScreenWindow.m in Sources */, - 1A72F86615E002E200281337 /* OOMouseInteractionMode.m in Sources */, - 1A72F86A15E14F1100281337 /* OOMacSystemStandardFullScreenController.m in Sources */, - 1A72F86F15E5655D00281337 /* OOVisualEffectEntity.m in Sources */, - 1A72F87315E5658E00281337 /* OOJSVisualEffect.m in Sources */, - 1A401F8915E7AF7B004CDF95 /* OOPrimaryWindow.m in Sources */, - 1A38E9E41603C7A500EE19F1 /* OOJSInterfaceDefinition.m in Sources */, - 1A38E9E81603C7A500EE19F1 /* OOJSGuiScreenKeyDefinition.m in Sources */, - 1AAEE9DB161F7523003A5A1E /* OOStringExpander.m in Sources */, - 1AD3C339163A92F600469C4D /* OOOpenGLStateManager.m in Sources */, - 1AD8522617947BD600CBE743 /* OOHPVector.m in Sources */, - 1AD8522F17947C9500CBE743 /* OOJSPopulatorDefinition.m in Sources */, - 1A9438D017F84C560011F80B /* OOExplosionCloudEntity.m in Sources */, - 1A1F6D0E180AC324002AD52E /* OOWaypointEntity.m in Sources */, - 1A1F6D17180AC371002AD52E /* OOJSWaypoint.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 1A3E01A911C574E1000FF226 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Oolite-importer"; - targetProxy = 1A3E01A811C574E1000FF226 /* PBXContainerItemProxy */; - }; - 1A78B5DC12D74D0600D42EE7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libpng; - targetProxy = 1A78B5DB12D74D0600D42EE7 /* PBXContainerItemProxy */; - }; - 1A7E3A05180AC8BF00576095 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Debug Bundle"; - targetProxy = 1A7E3A04180AC8BF00576095 /* PBXContainerItemProxy */; - }; - 1AB7763512CA33FB001478BB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libjs; - targetProxy = 1AB7763412CA33FB001478BB /* PBXContainerItemProxy */; - }; - 1ABF219A12D691A300075821 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Oolite-docktile"; - targetProxy = 1ABF219912D691A300075821 /* PBXContainerItemProxy */; - }; - 1AD267560C83052600B4BFD1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 0865423506B8447D000CA0AB /* Oolite */; - targetProxy = 1AD267550C83052600B4BFD1 /* PBXContainerItemProxy */; - }; - 1AE3455A12CB77CB00FD8C62 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = LibOgg; - targetProxy = 1AE3455912CB77CB00FD8C62 /* PBXContainerItemProxy */; - }; - 1AE3455C12CB77CD00FD8C62 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = LibVorbis; - targetProxy = 1AE3455B12CB77CD00FD8C62 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 08B31CAD08FE63D70038D42F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1ABFEE2110507987005AA752 /* oolite-nonshared.xcconfig */; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = NO; - COPY_SCHEMATA = 1; - DEPS_INCLUDE_PATH = "$(SYMROOT)/$(CONFIGURATION)/include"; - FRAMEWORK_SEARCH_PATHS = ( - "$(SRCROOT)/deps/Cocoa-deps/", - "$(SRCROOT)/deps/Cocoa-deps/Sparkle", - "$(DEVELOPER_FRAMEWORKS_DIR)", - ); - GAME_RESOURCES_DIR = $TARGET_BUILD_DIR/$FULL_PRODUCT_NAME/Contents/Resources; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = ( - "OO_DEBUG=1", - "DEBUG_GRAPHVIZ=1", - "DEBUG=1", - $OOLITE_OPTION_MACROS, - "OO_CHECK_GL_HEAVY=1", - "_DARWIN_C_SOURCE=200809L", - "_POSIX_C_SOURCE=200809L", - ); - GCC_REUSE_STRINGS = YES; - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - HEADER_SEARCH_PATHS = "$(SDKROOT)/usr/include/libkern/"; - IBC_WARNINGS = NO; - INFOPLIST_EXPAND_BUILD_SETTINGS = YES; - INFOPLIST_FILE = "src/Cocoa/Info-Oolite.plist"; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)/deps/Cocoa-deps/Ogg Vorbis\"", - ); - ONLY_ACTIVE_ARCH = YES; - PRODUCT_BUNDLE_IDENTIFIER = org.aegidian.oolite; - PRODUCT_NAME = Oolite; - SECTORDER_FLAGS = ""; - USER_HEADER_SEARCH_PATHS = "\"$(DEPS_INCLUDE_PATH)/ogg\" \"$(DEPS_INCLUDE_PATH)/js\" \"$(DEPS_INCLUDE_PATH)/vorbis\" \"$(DEPS_INCLUDE_PATH)/png\" \"$(SRCROOT)/src/Core/\" \"$(SRCROOT)/src/Core/Tables/\" \"$(SRCROOT)/src/Core/Entites/\" \"$(SRCROOT)/src/Core/Materials/\" \"$(SRCROOT)/src/BSDCompat/\""; - WARNING_CFLAGS = $OO_WARNING_FLAGS; - WRAPPER_EXTENSION = app; - }; - name = Debug; - }; - 08B31CAE08FE63D70038D42F /* Deployment */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1ABFEE2110507987005AA752 /* oolite-nonshared.xcconfig */; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = NO; - DEPS_INCLUDE_PATH = "$(SYMROOT)/$(CONFIGURATION)/include"; - EXPORTED_SYMBOLS_FILE = "src/Cocoa/exports-release.exp"; - "EXPORTED_SYMBOLS_FILE[arch=x86_64]" = "src/Cocoa/exports-release.exp"; - FRAMEWORK_SEARCH_PATHS = ( - "$(SRCROOT)/deps/Cocoa-deps/", - "$(SRCROOT)/deps/Cocoa-deps/Sparkle", - "$(DEVELOPER_FRAMEWORKS_DIR)", - ); - GAME_RESOURCES_DIR = $TARGET_BUILD_DIR/$FULL_PRODUCT_NAME/Contents/Resources; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_OPTIMIZATION_LEVEL = s; - GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = ( - $OOLITE_OPTION_MACROS, - NDEBUG, - "OO_EXCLUDE_DEBUG_SUPPORT=1", - "OO_LOCALIZATION_TOOLS=0", - ); - GCC_REUSE_STRINGS = YES; - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - HEADER_SEARCH_PATHS = "$(SDKROOT)/usr/include/libkern/"; - IBC_WARNINGS = NO; - INFOPLIST_FILE = "src/Cocoa/Info-Oolite.plist"; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)/deps/Cocoa-deps/Ogg Vorbis\"", - ); - PRODUCT_BUNDLE_IDENTIFIER = org.aegidian.oolite; - PRODUCT_NAME = Oolite; - SECTORDER_FLAGS = ""; - USER_HEADER_SEARCH_PATHS = "\"$(DEPS_INCLUDE_PATH)/ogg\" \"$(DEPS_INCLUDE_PATH)/js\" \"$(DEPS_INCLUDE_PATH)/vorbis\" \"$(DEPS_INCLUDE_PATH)/png\" \"$(SRCROOT)/src/Core/\" \"$(SRCROOT)/src/Core/Tables/\" \"$(SRCROOT)/src/Core/Entites/\" \"$(SRCROOT)/src/Core/Materials/\" \"$(SRCROOT)/src/BSDCompat/\""; - WARNING_CFLAGS = $OO_WARNING_FLAGS; - WRAPPER_EXTENSION = app; - }; - name = Deployment; - }; - 08B31CB108FE63D70038D42F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1AD88FAF103F29D300AA36F4 /* oolite-options.xcconfig */; - buildSettings = { - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = "$(HEADER_SEARCH_PATHS_QUOTED_1)"; - ONLY_ACTIVE_ARCH = YES; - }; - name = Debug; - }; - 08B31CB208FE63D70038D42F /* Deployment */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1AD88FAF103F29D300AA36F4 /* oolite-options.xcconfig */; - buildSettings = { - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = "$(HEADER_SEARCH_PATHS_QUOTED_1)"; - }; - name = Deployment; - }; - 1A0832D70C2F105000E3AE25 /* TestRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1ABFEE2110507987005AA752 /* oolite-nonshared.xcconfig */; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = NO; - COPY_SCHEMATA = 1; - DEPS_INCLUDE_PATH = "$(SYMROOT)/$(CONFIGURATION)/include"; - FRAMEWORK_SEARCH_PATHS = ( - "$(SRCROOT)/deps/Cocoa-deps/", - "$(SRCROOT)/deps/Cocoa-deps/Sparkle", - "$(DEVELOPER_FRAMEWORKS_DIR)", - ); - GAME_RESOURCES_DIR = $TARGET_BUILD_DIR/$FULL_PRODUCT_NAME/Contents/Resources; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_OPTIMIZATION_LEVEL = s; - GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = ( - "DEBUG_GRAPHVIZ=1", - $OOLITE_OPTION_MACROS, - ); - GCC_REUSE_STRINGS = YES; - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - HEADER_SEARCH_PATHS = "$(SDKROOT)/usr/include/libkern/"; - IBC_WARNINGS = NO; - INFOPLIST_FILE = "src/Cocoa/Info-Oolite.plist"; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)/deps/Cocoa-deps/Ogg Vorbis\"", - ); - PRODUCT_BUNDLE_IDENTIFIER = org.aegidian.oolite; - PRODUCT_NAME = Oolite; - SECTORDER_FLAGS = ""; - USER_HEADER_SEARCH_PATHS = "\"$(DEPS_INCLUDE_PATH)/ogg\" \"$(DEPS_INCLUDE_PATH)/js\" \"$(DEPS_INCLUDE_PATH)/vorbis\" \"$(DEPS_INCLUDE_PATH)/png\" \"$(SRCROOT)/src/Core/\" \"$(SRCROOT)/src/Core/Tables/\" \"$(SRCROOT)/src/Core/Entites/\" \"$(SRCROOT)/src/Core/Materials/\" \"$(SRCROOT)/src/BSDCompat/\""; - WARNING_CFLAGS = $OO_WARNING_FLAGS; - WRAPPER_EXTENSION = app; - }; - name = TestRelease; - }; - 1A0832D80C2F105000E3AE25 /* TestRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1AD88FAF103F29D300AA36F4 /* oolite-options.xcconfig */; - buildSettings = { - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = "$(HEADER_SEARCH_PATHS_QUOTED_1)"; - }; - name = TestRelease; - }; - 1AD267690C8305A200B4BFD1 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - OOLITE_INCUDE_DEBUG_BUNDLE = 1; - PRODUCT_NAME = "Build All"; - }; - name = Debug; - }; - 1AD2676A0C8305A200B4BFD1 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - OOLITE_INCUDE_DEBUG_BUNDLE = 0; - PRODUCT_NAME = "Build All"; - }; - name = Deployment; - }; - 1AD2676B0C8305A200B4BFD1 /* TestRelease */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - OOLITE_INCUDE_DEBUG_BUNDLE = 1; - PRODUCT_NAME = "Build All"; - }; - name = TestRelease; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 08B31CAC08FE63D70038D42F /* Build configuration list for PBXNativeTarget "Oolite" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 08B31CAD08FE63D70038D42F /* Debug */, - 08B31CAE08FE63D70038D42F /* Deployment */, - 1A0832D70C2F105000E3AE25 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 08B31CB008FE63D70038D42F /* Build configuration list for PBXProject "Oolite" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 08B31CB108FE63D70038D42F /* Debug */, - 08B31CB208FE63D70038D42F /* Deployment */, - 1A0832D80C2F105000E3AE25 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 1AD267680C8305A200B4BFD1 /* Build configuration list for PBXAggregateTarget "Build All" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1AD267690C8305A200B4BFD1 /* Debug */, - 1AD2676A0C8305A200B4BFD1 /* Deployment */, - 1AD2676B0C8305A200B4BFD1 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; -/* End XCConfigurationList section */ - }; - rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; -} diff --git a/Oolite.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Oolite.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a62..000000000 --- a/Oolite.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/Oolite.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/Oolite.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index 08de0be8d..000000000 --- a/Oolite.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded - - - diff --git a/Oolite.xcodeproj/xcshareddata/xcschemes/Oolite - Debug.xcscheme b/Oolite.xcodeproj/xcshareddata/xcschemes/Oolite - Debug.xcscheme deleted file mode 100644 index 0fa8adda5..000000000 --- a/Oolite.xcodeproj/xcshareddata/xcschemes/Oolite - Debug.xcscheme +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Oolite.xcodeproj/xcshareddata/xcschemes/Oolite - Deployment.xcscheme b/Oolite.xcodeproj/xcshareddata/xcschemes/Oolite - Deployment.xcscheme deleted file mode 100644 index ecef1926f..000000000 --- a/Oolite.xcodeproj/xcshareddata/xcschemes/Oolite - Deployment.xcscheme +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Oolite.xcodeproj/xcshareddata/xcschemes/Oolite - Test Release.xcscheme b/Oolite.xcodeproj/xcshareddata/xcschemes/Oolite - Test Release.xcscheme deleted file mode 100644 index af23ec126..000000000 --- a/Oolite.xcodeproj/xcshareddata/xcschemes/Oolite - Test Release.xcscheme +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tools/mkmanifest.sh b/ShellScripts/common/mkmanifest.sh similarity index 100% rename from tools/mkmanifest.sh rename to ShellScripts/common/mkmanifest.sh diff --git a/ShellScripts/common/post_build.sh b/ShellScripts/common/post_build.sh index 548778f72..8921bf647 100755 --- a/ShellScripts/common/post_build.sh +++ b/ShellScripts/common/post_build.sh @@ -26,7 +26,7 @@ run_script() { mkdir -p "$PROGDIR/Resources" - tools/mkmanifest.sh > "$PROGDIR/Resources/manifest.plist" + ShellScripts/common/mkmanifest.sh > "$PROGDIR/Resources/manifest.plist" local RESOURCE_DIRS=( "Resources/AIs" diff --git a/installers/autopackage/HowToInstall.txt b/installers/autopackage/HowToInstall.txt deleted file mode 100644 index 1d54f149f..000000000 --- a/installers/autopackage/HowToInstall.txt +++ /dev/null @@ -1,105 +0,0 @@ -.package Installation Instructions ----------------------------------- -Start by uninstalling any Oolite (repository installation). -If you have already installed Oolite from a .package, it -will be automatically uninstalled without affecting any of -your save-games or add-ons. - -Then execute the following: -(replace with the actual name of the -.package file - without the '<' and '>' characters) - $ chmod u+x .package - $ ./.package - -Accept the download of the autopackage runtime and -the GTK (needed only once). You will be prompted for -a password with root privileges. If you don't provide it, -the installation will be visible only to your user. - -To remove oolite execute -(as root if you provided a password during installation) - $ package remove oolite - -Following the installation you may start Oolite from -Games/Oolite menu or by executing: - $ oolite -from a terminal. - - - -Troubleshoot speech feature ---------------------------- -If you encounter issues with the oolite speech feature, -you could try one of the following workarounds: -1. If your system has libportaudio.so.2 installed: - cd [/usr or ~/.local]/lib/Oolite/oolite-deps/lib/ - [sudo] mv libportaudio.so.2 libportaudio.so.2.oolite -Note: If libportaudio.so.2 is not part of your default installation, -you could get it from your distro's repository. - -2. If your system is configured with PulseAudio: - cd [/usr or ~/.local]/lib/Oolite/oolite-deps/lib/ - [sudo] cp -p libespeak.so.1 libespeak.so.1.portaudio - [sudo] cp -p libespeak.so.1.pulseaudio libespeak.so.1 -Note: If PulseAudio is not part of your default installation, -you could get it from your distro's repository. - -In any case you may turn the speech synthesis off, -from Oolite ingame options. For further assistance, -feel free to join in http://aegidian.org/bb - - - -Documentation -------------- -Oolite documentation can be found in -(if password was not provided during installation) -~/.local/lib/Oolite/doc/ -or -(if password was provided during installation) -/usr/lib/Oolite/doc/ -Feel free to also visit the Oolite wiki http://wiki.alioth.net/index.php/Oolite_Main_Page - - - -Oolite Expansion Packs (i.e. add-ons) -------------------------------------- -Create the AddOns folder: - $ mkdir ~/.Oolite/AddOns/ -and copy any add-on ".oxp" folder into ~/.Oolite/AddOns/ - -If you have installed Oolite system-wide, providing a password -during installation, you may copy any add-on ".oxp" folder -into /usr/lib/Oolite/AddOns/ making your add-ons available to -any user. - - - -Oolite Paths ------------- -Note: The root-path for Oolite installation is either -~/.local (if password was not provided during installation) -or -/usr (if password was provided during installation) - -During the .package installation Oolite will create the following: -/lib/Oolite/ (application folder for binaries, resources and documentation) -/bin/oolite (this is what you execute to run Oolite) -/bin/oolite-update (this is what you execute to update oolite) - -Following the first run, Oolite will create: -~/.Oolite/ (logs and add-ons) -~/.Oolite/Logs/ (Latest.log and Previous.log text-files) -~/GNUstep/ (GNUstep defaults and caches) -~/oolite-saves/ (save-games and screenshots) - -Following the first in-game screenshot taken (using the "*" key): -~/oolite-saves/snapshots/ -will be created to store the in-game screenshot - - - -For further assistance, feel free to join in http://aegidian.org/bb -Add-ons may be freely downloaded from http://wiki.alioth.net/index.php/OXP - -For more information on autopackage packaging visit http://autopackage.org diff --git a/installers/autopackage/default.x86.apspec b/installers/autopackage/default.x86.apspec deleted file mode 100644 index 7592e3800..000000000 --- a/installers/autopackage/default.x86.apspec +++ /dev/null @@ -1,141 +0,0 @@ -# -*-shell-script-*- -# Original by Dylan Smith -# -# Konstantinos Sykas -# 2009-09-30: Updated to include DTDs and new documentation, and to perform a clean uninstall -# 2009-10-13: a. Support for x86_64 architecture packages -# b. Perform a clean build before producing the package -# 2011-03-22: Removed the need of the TOPLEVEL environment variable -# for oolite-update and oolite-wrapper scripts -# - -[Meta] -RootName: @oolite-linux.berlios.de/oolite:$SOFTWAREVERSION -DisplayName: Oolite for Linux -ShortName: oolite -Maintainer: Dylan Smith -Packager: Konstantinos Sykas -Summary: Oolite is an Elite tribute game that is easily expandable. -URL: http://oolite.aegidian.org -License: GNU GPL version 2 -SoftwareVersion: 1.93 -AutopackageTarget: 1.4 -# Use 'CPUArchitectures: x86_64' if 'uname -m' gives x86_64 -CPUArchitectures: x86 - -PackageFileName: $SHORTNAME-$SOFTWAREVERSION.$CPUARCHITECTURES.package - -# Only uncomment InterfaceVersion if your package exposes interfaces to other software, -# for instance if it includes DSOs or python/perl modules. See the developer guide for more info, -# or ask on autopackage-dev if you don't understand interface versioning in autopackage. -# -# InterfaceVersion: 0.0 - -[Description] -Oolite for Linux is an independent recreation and interpretation of the -classic space game Elite. Choose your side of the law. Choose your -profession. Above all, reach the Elite rating. - -# we do the executable separately as this allows Autopackage to check -# the libc version. Note: autopackage doesn't seem to compress, that's -# why we are using tar files :/ -[BuildPrepare] -make -f Makefile clean -make -f Makefile deps-release-snapshot -cp installers/FreeDesktop/oolite.desktop $build_root -cp installers/FreeDesktop/oolite-icon.png $build_root -cp Doc/AdviceForNewCommanders.pdf $build_root -cp Doc/OoliteReadMe.pdf $build_root -cp Doc/OoliteRS.pdf $build_root -cp Doc/CHANGELOG.TXT $build_root -tar zcf $build_root/oolite.app.tar oolite.app --exclude .svn - -cd deps/Cross-platform-deps/ -tar zcf $build_root/dtds.tar DTDs --exclude .svn -cd ../Linux-deps/ -cp oolite.src $build_root -cp oolite-update.src $build_root -cp README.TXT $build_root -cd x86 -tar zcf $build_root/oolite.deps.tar lib --exclude .svn -echo $SOFTWAREVERSION >$build_root/release.txt - -#[BuildUnprepare] -#unprepareBuild - -[Imports] -import < README-PREAMBLE.TXT -echo "more docs can be found at $PREFIX/lib/Oolite/doc" >> README-PREAMBLE.TXT -echo "Press q to exit this document and launch the game" >> README-PREAMBLE.TXT -echo >> README-PREAMBLE.TXT -copyFiles README.TXT README-PREAMBLE.TXT $PREFIX/lib/Oolite/doc -copyFiles AdviceForNewCommanders.pdf OoliteReadMe.pdf OoliteRS.pdf CHANGELOG.TXT $PREFIX/lib/Oolite/doc -copyFile release.txt $PREFIX/lib/Oolite/release.txt -chmod a+rw $PREFIX/lib/Oolite/release.txt - -echo "#!/bin/sh" > oolite-wrapper -echo "OOLITE_ROOT=$PREFIX/lib/Oolite" >> oolite-wrapper -cat oolite.src >> oolite-wrapper -copyFile oolite-wrapper $PREFIX/lib/Oolite/oolite.app/oolite-wrapper -chmod +x $PREFIX/lib/Oolite/oolite.app/oolite-wrapper - -echo "#!/bin/sh" > oolite-update -echo "OOLITE_ROOT=$PREFIX/lib/Oolite" >> oolite-update -cat oolite-update.src >> oolite-update -copyFile oolite-update $PREFIX/lib/Oolite/oolite.app/oolite-update -chmod +x $PREFIX/lib/Oolite/oolite.app/oolite-update - -echo "#!/bin/sh" > oolite -echo "$PREFIX/lib/Oolite/oolite.app/oolite-wrapper \$@" >> oolite -echo "exit" >> oolite -echo "#!/bin/sh" > oolite-update -echo "$PREFIX/lib/Oolite/oolite.app/oolite-update \$@" >> oolite-update -echo "exit" >> oolite-update -installExe oolite oolite-update -installIcon oolite-icon.png -installDesktop "Game" oolite.desktop - -outputStatus "Complete" - -[Uninstall] -# Usually just the following line is enough to uninstall everything -uninstallFromLog - diff --git a/installers/autopackage/default.x86_64.apspec b/installers/autopackage/default.x86_64.apspec deleted file mode 100644 index 3f293b69d..000000000 --- a/installers/autopackage/default.x86_64.apspec +++ /dev/null @@ -1,141 +0,0 @@ -# -*-shell-script-*- -# Original by Dylan Smith -# -# Konstantinos Sykas -# 2009-09-30: Updated to include DTDs and new documentation, and to perform a clean uninstall -# 2009-10-13: a. Support for x86_64 architecture packages -# b. Perform a clean build before producing the package -# 2011-03-22: Removed the need of the TOPLEVEL environment variable -# for oolite-update and oolite-wrapper scripts -# - -[Meta] -RootName: @oolite-linux.berlios.de/oolite:$SOFTWAREVERSION -DisplayName: Oolite for Linux -ShortName: oolite -Maintainer: Dylan Smith -Packager: Konstantinos Sykas -Summary: Oolite is an Elite tribute game that is easily expandable. -URL: http://oolite.aegidian.org -License: GNU GPL version 2 -SoftwareVersion: 1.93 -AutopackageTarget: 1.4 -# Use 'CPUArchitectures: x86' if 'uname -m' gives i?86 (i.e. consider '?' as a wildcard) -CPUArchitectures: x86_64 - -PackageFileName: $SHORTNAME-$SOFTWAREVERSION.$CPUARCHITECTURES.package - -# Only uncomment InterfaceVersion if your package exposes interfaces to other software, -# for instance if it includes DSOs or python/perl modules. See the developer guide for more info, -# or ask on autopackage-dev if you don't understand interface versioning in autopackage. -# -# InterfaceVersion: 0.0 - -[Description] -Oolite for Linux is an independent recreation and interpretation of the -classic space game Elite. Choose your side of the law. Choose your -profession. Above all, reach the Elite rating. - -# we do the executable separately as this allows Autopackage to check -# the libc version. Note: autopackage doesn't seem to compress, that's -# why we are using tar files :/ -[BuildPrepare] -make -f Makefile clean -make -f Makefile deps-release-snapshot -cp installers/FreeDesktop/oolite.desktop $build_root -cp installers/FreeDesktop/oolite-icon.png $build_root -cp Doc/AdviceForNewCommanders.pdf $build_root -cp Doc/OoliteReadMe.pdf $build_root -cp Doc/OoliteRS.pdf $build_root -cp Doc/CHANGELOG.TXT $build_root -tar zcf $build_root/oolite.app.tar oolite.app --exclude .svn - -cd deps/Cross-platform-deps/ -tar zcf $build_root/dtds.tar DTDs --exclude .svn -cd ../Linux-deps/ -cp oolite.src $build_root -cp oolite-update.src $build_root -cp README.TXT $build_root -cd x86_64 -tar zcf $build_root/oolite.deps.tar lib --exclude .svn -echo $SOFTWAREVERSION >$build_root/release.txt - -#[BuildUnprepare] -#unprepareBuild - -[Imports] -import < README-PREAMBLE.TXT -echo "more docs can be found at $PREFIX/lib/Oolite/doc" >> README-PREAMBLE.TXT -echo "Press q to exit this document and launch the game" >> README-PREAMBLE.TXT -echo >> README-PREAMBLE.TXT -copyFiles README.TXT README-PREAMBLE.TXT $PREFIX/lib/Oolite/doc -copyFiles AdviceForNewCommanders.pdf OoliteReadMe.pdf OoliteRS.pdf CHANGELOG.TXT $PREFIX/lib/Oolite/doc -copyFile release.txt $PREFIX/lib/Oolite/release.txt -chmod a+rw $PREFIX/lib/Oolite/release.txt - -echo "#!/bin/sh" > oolite-wrapper -echo "OOLITE_ROOT=$PREFIX/lib/Oolite" >> oolite-wrapper -cat oolite.src >> oolite-wrapper -copyFile oolite-wrapper $PREFIX/lib/Oolite/oolite.app/oolite-wrapper -chmod +x $PREFIX/lib/Oolite/oolite.app/oolite-wrapper - -echo "#!/bin/sh" > oolite-update -echo "OOLITE_ROOT=$PREFIX/lib/Oolite" >> oolite-update -cat oolite-update.src >> oolite-update -copyFile oolite-update $PREFIX/lib/Oolite/oolite.app/oolite-update -chmod +x $PREFIX/lib/Oolite/oolite.app/oolite-update - -echo "#!/bin/sh" > oolite -echo "$PREFIX/lib/Oolite/oolite.app/oolite-wrapper \$@" >> oolite -echo "exit" >> oolite -echo "#!/bin/sh" > oolite-update -echo "$PREFIX/lib/Oolite/oolite.app/oolite-update \$@" >> oolite-update -echo "exit" >> oolite-update -installExe oolite oolite-update -installIcon oolite-icon.png -installDesktop "Game" oolite.desktop - -outputStatus "Complete" - -[Uninstall] -# Usually just the following line is enough to uninstall everything -uninstallFromLog - diff --git a/installers/posix/make_installer.sh b/installers/posix/make_installer.sh deleted file mode 100755 index 11d5de3e8..000000000 --- a/installers/posix/make_installer.sh +++ /dev/null @@ -1,119 +0,0 @@ -#!/bin/bash -x - - -# -# Original by Konstantinos Sykas (26-Mar-2011) -# -# Type: shell script -# Parameters: $1 - architecture (i.e. x86 or x86_64) -# $2 - version with format maj.min.rev.githash (e.g. 1.91.0.7549-231111-cf99a82) -# $3 - build mode (e.g. release, release-snapshot etc.) -# $4 - (optional) defines a nightly build. All optional parameters -# must follow after the mandatory parameters -# Description: Wrapper script for "makeself.sh". Prepares a clean build and -# generates the tarballs (e.g. docs, icons, libraries) to be -# packaged by "makeself.sh". -# - -echo ${0} was called with ${*} - -release_mode="" # Leave this empty. In the code you should define conditions for values like "-dev", "-test", "-beta", "-rc1", etc. -make_rc=0 -build_mode=$3 # Should take [release-deployment, release, release-snapshot] -build_submode=`echo $build_mode | cut -d '-' -f 2 | sed -e s/release/test/` # Should take [deployment, test, snapshot] -echo $build_mode -if [ "$build_mode" = "release-deployment" ] -then - make -f Makefile distclean # force libraries clean build -else - make -f Makefile clean -fi -make -f Makefile deps-$build_mode -make_rc=$? -if [ $make_rc -ne 0 ] -then - exit $make_rc -fi - -cpu_architecture=$1 -oolite_version_extended=$2 -githash=`echo $oolite_version_extended | cut -d '-' -f 3` -if [ "$build_submode" = "snapshot" ] -then - oolite_version=$oolite_version_extended - if [ "$4" = "nightly" ] - then - # trunk="-trunk" - release_mode="-dev" # This is the only case to define release_mode as "-dev" - noxterm="--nox11" # If nightly, do NOT spawn an x11 terminal when installer is started from desktop - fi -else - oolite_version=$oolite_version_extended - ver_rev=`echo $oolite_version_extended | cut -d '.' -f 3` - - if [ "$build_submode" = "test" ] - then - release_mode="-test" # Here is the right place to define if this is "-test", "-beta", "-rc1", etc. - fi -fi -oolite_app=oolite.app -setup_root=${oolite_app}/oolite.installer.tmp - - -echo -echo "Starting \"makeself\" packager... with" "$@" -mkdir -p ${setup_root} - -echo "Generating version info..." -echo ${oolite_version_extended} > ${setup_root}/release.txt - -if [ "$build_mode" != "release-deployment" ] -then - echo "Packing AddOns..." - tar zcf ${setup_root}/addons.tar.gz --exclude .git AddOns/ -fi - -echo "Packing desktop menu files..." -cd installers/ -tar zcf ../${setup_root}/freedesktop.tar.gz --exclude .git FreeDesktop/ - -echo "Packing $cpu_architecture architecture library dependencies..." -cd ../deps/Linux-deps/${cpu_architecture}/ -tar zcf ../../../${setup_root}/oolite.deps.tar.gz --exclude .git lib/ - -echo "Packing documentation..." -cd ../../../Doc/ -tar cf ../${setup_root}/oolite.doc.tar AdviceForNewCommanders.pdf OoliteReadMe.pdf OoliteRS.pdf CHANGELOG.TXT -cd ../deps/Linux-deps/ -tar rf ../../${setup_root}/oolite.doc.tar README.TXT -gzip ../../${setup_root}/oolite.doc.tar - -echo "Packing wrapper scripts and startup README..." -tar zcf ../../${setup_root}/oolite.wrap.tar.gz oolite.src oolite-update.src - -echo "Packing GNUstep DTDs..." -cd ../Cross-platform-deps/ -tar zcf ../../${setup_root}/oolite.dtd.tar.gz --exclude .git DTDs - -echo "Copying setup script..." -cd ../../installers/posix/ -cat setup.header > ../../${oolite_app}/setup -if [ $trunk ] -then - echo "TRUNK=\"$trunk\"" >> ../../${oolite_app}/setup - echo "UNATTENDED_INSTALLATION=1" >> ../../${oolite_app}/setup -fi -cat setup.body >> ../../${oolite_app}/setup -chmod +x ../../${oolite_app}/setup -cp -p uninstall.source ../../${oolite_app}/. - - -echo -./makeself.sh ${noxterm} ../../${oolite_app} OoliteInstall-${oolite_version}-linux${release_mode}${trunk}-${cpu_architecture}.run "Oolite${trunk} ${oolite_version} " ./setup $oolite_version -ms_rc=$? -if [ $ms_rc -eq 0 ] -then - echo "It is located in the \"installers/posix/\" folder." -fi - -exit $ms_rc diff --git a/installers/posix/makeself-header.sh b/installers/posix/makeself-header.sh deleted file mode 100755 index 2d68808cc..000000000 --- a/installers/posix/makeself-header.sh +++ /dev/null @@ -1,418 +0,0 @@ - -# -# Original by Stephane Peter -# -# Type: shell script -# Description: The package self-extraction wrapper script -# -# Konstantinos Sykas changes follow: -# (02-Jul-2018): Added list of Oolite setup arguments (only one at this time) -# - - -cat << EOF > "$archname" -#!/bin/sh -# This script was generated using Makeself $MS_VERSION - -CRCsum="$CRCsum" -MD5="$MD5sum" -TMPROOT=\${TMPDIR:=/tmp} - -label="$LABEL" -script="$SCRIPT" -scriptargs="$SCRIPTARGS" -targetdir="$archdirname" -filesizes="$filesizes" -keep=$KEEP - -print_cmd_arg="" -if type printf > /dev/null; then - print_cmd="printf" -elif test -x /usr/ucb/echo; then - print_cmd="/usr/ucb/echo" -else - print_cmd="echo" -fi - -unset CDPATH - -MS_Printf() -{ - \$print_cmd \$print_cmd_arg "\$1" -} - -MS_Progress() -{ - while read a; do - MS_Printf . - done -} - -MS_diskspace() -{ - ( - if test -d /usr/xpg4/bin; then - PATH=/usr/xpg4/bin:\$PATH - fi - df -kP "\$1" | tail -1 | awk '{print \$4}' - ) -} - -MS_dd() -{ - blocks=\`expr \$3 / 1024\` - bytes=\`expr \$3 % 1024\` - dd if="\$1" ibs=\$2 skip=1 obs=1024 conv=sync 2> /dev/null | \\ - { test \$blocks -gt 0 && dd ibs=1024 obs=1024 count=\$blocks ; \\ - test \$bytes -gt 0 && dd ibs=1 obs=1024 count=\$bytes ; } 2> /dev/null -} - -MS_Help() -{ - cat << EOH >&2 -Oolite v\$scriptargs Self-Extracting Installer Package Help -(made with Makeself version $MS_VERSION) - 1) Getting help or info about \$0 : - \$0 --help Print this message - \$0 --info Print embedded info : title, default target directory, embedded script ... - \$0 --lsm Print embedded lsm entry (or no LSM) - \$0 --list Print the list of files in the archive - \$0 --check Checks integrity of the archive - - 2) Running \$0 : - \$0 [options] [--] [additional arguments for Oolite setup script] - with following options (in that order) - --confirm Ask before running embedded script - --noexec Do not run embedded script - --keep Do not erase target directory after running the embedded script - --nox11 Do not spawn an xterm - --nochown Do not give the extracted files to the current user - --target NewDirectory Extract in NewDirectory - --tar arg1 [arg2 ...] Access the contents of the archive through the tar command - -- [--arg1 --arg2 ...] Arguments will be passed to the Oolite setup script - - List of Oolite setup arguments (in that order): - --systemwide-directory DIRECTORY (default: /opt) Set the systemwide installation directory - -Report bugs to https://github.com/OoliteProject/oolite/issues -EOH -} - -MS_Check() -{ - OLD_PATH="\$PATH" - PATH=\${GUESS_MD5_PATH:-"\$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} - MD5_ARG="" - MD5_PATH=\`exec <&- 2>&-; which md5sum || type md5sum\` - test -x "\$MD5_PATH" || MD5_PATH=\`exec <&- 2>&-; which md5 || type md5\` - test -x "\$MD5_PATH" || MD5_PATH=\`exec <&- 2>&-; which digest || type digest\` - PATH="\$OLD_PATH" - - MS_Printf "Verifying archive integrity..." - offset=\`head -n $SKIP "\$1" | wc -c | tr -d " "\` - verb=\$2 - i=1 - for s in \$filesizes - do - crc=\`echo \$CRCsum | cut -d" " -f\$i\` - if test -x "\$MD5_PATH"; then - if test \`basename \$MD5_PATH\` = digest; then - MD5_ARG="-a md5" - fi - md5=\`echo \$MD5 | cut -d" " -f\$i\` - if test \$md5 = "00000000000000000000000000000000"; then - test x\$verb = xy && echo " \$1 does not contain an embedded MD5 checksum." >&2 - else - md5sum=\`MS_dd "\$1" \$offset \$s | eval "\$MD5_PATH \$MD5_ARG" | cut -b-32\`; - if test "\$md5sum" != "\$md5"; then - echo "Error in MD5 checksums: \$md5sum is different from \$md5" >&2 - exit 2 - else - test x\$verb = xy && MS_Printf " MD5 checksums are OK." >&2 - fi - crc="0000000000"; verb=n - fi - fi - if test \$crc = "0000000000"; then - test x\$verb = xy && echo " \$1 does not contain a CRC checksum." >&2 - else - sum1=\`MS_dd "\$1" \$offset \$s | CMD_ENV=xpg4 cksum | awk '{print \$1}'\` - if test "\$sum1" = "\$crc"; then - test x\$verb = xy && MS_Printf " CRC checksums are OK." >&2 - else - echo "Error in checksums: \$sum1 is different from \$crc" - exit 2; - fi - fi - i=\`expr \$i + 1\` - offset=\`expr \$offset + \$s\` - done - echo " All good." -} - -UnTAR() -{ - tar \$1vf - 2>&1 || { echo Extraction failed. > /dev/tty; kill -15 \$$; } -} - -finish=true -xterm_loop= -nox11=$NOX11 -copy=$COPY -ownership=y -verbose=n - -initargs="\$@" - -while true -do - case "\$1" in - -h | --help) - MS_Help - exit 0 - ;; - --info) - echo Identification: "\$label" - echo Target directory: "\$targetdir" - echo Uncompressed size: $USIZE KB - echo Compression: $COMPRESS - echo Date of packaging: $DATE - echo Built with Makeself version $MS_VERSION on $OSTYPE - echo Build command was: "$MS_COMMAND" - if test x\$script != x; then - echo Script run after extraction: - echo " " \$script \$scriptargs - fi - if test x"$copy" = xcopy; then - echo "Archive will copy itself to a temporary location" - fi - if test x"$KEEP" = xy; then - echo "directory \$targetdir is permanent" - else - echo "\$targetdir will be removed after extraction" - fi - exit 0 - ;; - --dumpconf) - echo LABEL=\"\$label\" - echo SCRIPT=\"\$script\" - echo SCRIPTARGS=\"\$scriptargs\" - echo archdirname=\"$archdirname\" - echo KEEP=$KEEP - echo COMPRESS=$COMPRESS - echo filesizes=\"\$filesizes\" - echo CRCsum=\"\$CRCsum\" - echo MD5sum=\"\$MD5\" - echo OLDUSIZE=$USIZE - echo OLDSKIP=`expr $SKIP + 1` - exit 0 - ;; - --lsm) -cat << EOLSM -EOF -eval "$LSM_CMD" -cat << EOF >> "$archname" -EOLSM - exit 0 - ;; - --list) - echo Target directory: \$targetdir - offset=\`head -n $SKIP "\$0" | wc -c | tr -d " "\` - for s in \$filesizes - do - MS_dd "\$0" \$offset \$s | eval "$GUNZIP_CMD" | UnTAR t - offset=\`expr \$offset + \$s\` - done - exit 0 - ;; - --tar) - offset=\`head -n $SKIP "\$0" | wc -c | tr -d " "\` - arg1="\$2" - shift 2 - for s in \$filesizes - do - MS_dd "\$0" \$offset \$s | eval "$GUNZIP_CMD" | tar "\$arg1" - \$* - offset=\`expr \$offset + \$s\` - done - exit 0 - ;; - --check) - MS_Check "\$0" y - exit 0 - ;; - --confirm) - verbose=y - shift - ;; - --noexec) - script="" - shift - ;; - --keep) - keep=y - shift - ;; - --target) - keep=y - targetdir=\${2:-.} - shift 2 - ;; - --nox11) - nox11=y - shift - ;; - --nochown) - ownership=n - shift - ;; - --xwin) - finish="echo Press Return to close this window...; read junk" - xterm_loop=1 - shift - ;; - --phase2) - copy=phase2 - shift - ;; - --) - shift - break ;; - -*) - echo Unrecognized flag : "\$1" >&2 - MS_Help - exit 1 - ;; - *) - break ;; - esac -done - -case "\$copy" in -copy) - tmpdir=\$TMPROOT/makeself.\$RANDOM.\`date +"%y%m%d%H%M%S"\`.\$\$ - mkdir "\$tmpdir" || { - echo "Could not create temporary directory \$tmpdir" >&2 - exit 1 - } - SCRIPT_COPY="\$tmpdir/makeself" - echo "Copying to a temporary location..." >&2 - cp "\$0" "\$SCRIPT_COPY" - chmod +x "\$SCRIPT_COPY" - cd "\$TMPROOT" - exec "\$SCRIPT_COPY" --phase2 -- \$initargs - ;; -phase2) - finish="\$finish ; rm -rf \`dirname \$0\`" - ;; -esac - -if test "\$nox11" = "n"; then - if tty -s; then # Do we have a terminal? - : - else - if test x"\$DISPLAY" != x -a x"\$xterm_loop" = x; then # No, but do we have X? - if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable - GUESS_XTERMS="xterm rxvt dtterm eterm Eterm kvt konsole aterm" - for a in \$GUESS_XTERMS; do - if type \$a >/dev/null 2>&1; then - XTERM=\$a - break - fi - done - chmod a+x \$0 || echo Please add execution rights on \$0 - if test \`echo "\$0" | cut -c1\` = "/"; then # Spawn a terminal! - exec \$XTERM -title "\$label" -e "\$0" --xwin "\$initargs" - else - exec \$XTERM -title "\$label" -e "./\$0" --xwin "\$initargs" - fi - fi - fi - fi -fi - -if test "\$targetdir" = "."; then - tmpdir="." -else - if test "\$keep" = y; then - echo "Creating directory \$targetdir" >&2 - tmpdir="\$targetdir" - dashp="-p" - else - tmpdir="\$TMPROOT/selfgz\$\$\$RANDOM" - dashp="" - fi - mkdir \$dashp \$tmpdir || { - echo 'Cannot create target directory' \$tmpdir >&2 - echo 'You should try option --target OtherDirectory' >&2 - eval \$finish - exit 1 - } -fi - -location="\`pwd\`" -if test x\$SETUP_NOCHECK != x1; then - MS_Check "\$0" -fi -offset=\`head -n $SKIP "\$0" | wc -c | tr -d " "\` - -if test x"\$verbose" = xy; then - MS_Printf "About to extract $USIZE KB in \$tmpdir ... Proceed ? [Y/n] " - read yn - if test x"\$yn" = xn; then - eval \$finish; exit 1 - fi -fi - -MS_Printf "Uncompressing \$label" -res=3 -if test "\$keep" = n; then - trap 'echo Signal caught, cleaning up >&2; cd \$TMPROOT; /bin/rm -rf \$tmpdir; eval \$finish; exit 15' 1 2 3 15 -fi - -leftspace=\`MS_diskspace \$tmpdir\` -if test \$leftspace -lt $USIZE; then - echo - echo "Not enough space left in "\`dirname \$tmpdir\`" (\$leftspace KB) to decompress \$0 ($USIZE KB)" >&2 - if test "\$keep" = n; then - echo "Consider setting TMPDIR to a directory with more free space." - fi - eval \$finish; exit 1 -fi - -for s in \$filesizes -do - if MS_dd "\$0" \$offset \$s | eval "$GUNZIP_CMD" | ( cd "\$tmpdir"; UnTAR x ) | MS_Progress; then - if test x"\$ownership" = xy; then - (PATH=/usr/xpg4/bin:\$PATH; cd "\$tmpdir"; chown -R \`id -u\` .; chgrp -R \`id -g\` .) - fi - else - echo - echo "Unable to decompress \$0" >&2 - eval \$finish; exit 1 - fi - offset=\`expr \$offset + \$s\` -done -echo - -cd "\$tmpdir" -res=0 -if test x"\$script" != x; then - if test x"\$verbose" = xy; then - MS_Printf "OK to execute: \$script \$scriptargs \$* ? [Y/n] " - read yn - if test x"\$yn" = x -o x"\$yn" = xy -o x"\$yn" = xY; then - eval \$script \$scriptargs \$*; res=\$?; - fi - else - eval \$script \$scriptargs \$*; res=\$? - fi - if test \$res -ne 0; then - test x"\$verbose" = xy && echo "The program '\$script' returned an error code (\$res)" >&2 - fi -fi -if test "\$keep" = n; then - cd \$TMPROOT - /bin/rm -rf \$tmpdir -fi -eval \$finish; exit \$res -EOF diff --git a/installers/posix/makeself.sh b/installers/posix/makeself.sh deleted file mode 100755 index 7c4b44f13..000000000 --- a/installers/posix/makeself.sh +++ /dev/null @@ -1,423 +0,0 @@ -#!/bin/sh -# -# Makeself version 2.1.x -# by Stephane Peter -# -# $Id: makeself.sh,v 1.64 2008/01/04 23:52:14 megastep Exp $ -# -# Utility to create self-extracting tar.gz archives. -# The resulting archive is a file holding the tar.gz archive with -# a small Shell script stub that uncompresses the archive to a temporary -# directory and then executes a given script from withing that directory. -# -# Makeself home page: http://www.megastep.org/makeself/ -# -# Version 2.0 is a rewrite of version 1.0 to make the code easier to read and maintain. -# -# Version history : -# - 1.0 : Initial public release -# - 1.1 : The archive can be passed parameters that will be passed on to -# the embedded script, thanks to John C. Quillan -# - 1.2 : Package distribution, bzip2 compression, more command line options, -# support for non-temporary archives. Ideas thanks to Francois Petitjean -# - 1.3 : More patches from Bjarni R. Einarsson and Francois Petitjean: -# Support for no compression (--nocomp), script is no longer mandatory, -# automatic launch in an xterm, optional verbose output, and -target -# archive option to indicate where to extract the files. -# - 1.4 : Improved UNIX compatibility (Francois Petitjean) -# Automatic integrity checking, support of LSM files (Francois Petitjean) -# - 1.5 : Many bugfixes. Optionally disable xterm spawning. -# - 1.5.1 : More bugfixes, added archive options -list and -check. -# - 1.5.2 : Cosmetic changes to inform the user of what's going on with big -# archives (Quake III demo) -# - 1.5.3 : Check for validity of the DISPLAY variable before launching an xterm. -# More verbosity in xterms and check for embedded command's return value. -# Bugfix for Debian 2.0 systems that have a different "print" command. -# - 1.5.4 : Many bugfixes. Print out a message if the extraction failed. -# - 1.5.5 : More bugfixes. Added support for SETUP_NOCHECK environment variable to -# bypass checksum verification of archives. -# - 1.6.0 : Compute MD5 checksums with the md5sum command (patch from Ryan Gordon) -# - 2.0 : Brand new rewrite, cleaner architecture, separated header and UNIX ports. -# - 2.0.1 : Added --copy -# - 2.1.0 : Allow multiple tarballs to be stored in one archive, and incremental updates. -# Added --nochown for archives -# Stopped doing redundant checksums when not necesary -# - 2.1.1 : Work around insane behavior from certain Linux distros with no 'uncompress' command -# Cleaned up the code to handle error codes from compress. Simplified the extraction code. -# - 2.1.2 : Some bug fixes. Use head -n to avoid problems. -# - 2.1.3 : Bug fixes with command line when spawning terminals. -# Added --tar for archives, allowing to give arbitrary arguments to tar on the contents of the archive. -# Added --noexec to prevent execution of embedded scripts. -# Added --nomd5 and --nocrc to avoid creating checksums in archives. -# Added command used to create the archive in --info output. -# Run the embedded script through eval. -# - 2.1.4 : Fixed --info output. -# Generate random directory name when extracting files to . to avoid problems. (Jason Trent) -# Better handling of errors with wrong permissions for the directory containing the files. (Jason Trent) -# Avoid some race conditions (Ludwig Nussel) -# Unset the $CDPATH variable to avoid problems if it is set. (Debian) -# Better handling of dot files in the archive directory. -# - 2.1.5 : Made the md5sum detection consistent with the header code. -# Check for the presence of the archive directory -# Added --encrypt for symmetric encryption through gpg (Eric Windisch) -# Added support for the digest command on Solaris 10 for MD5 checksums -# Check for available disk space before extracting to the target directory (Andreas Schweitzer) -# Allow extraction to run asynchronously (patch by Peter Hatch) -# Use file descriptors internally to avoid error messages (patch by Kay Tiong Khoo) -# -# (C) 1998-2008 by Stéphane Peter -# -# This software is released under the terms of the GNU GPL version 2 and above -# Please read the license at http://www.gnu.org/copyleft/gpl.html -# -# -# Konstantinos Sykas (26-Mar-2011): Altered TAR arguments (lines 136 and 350) for Oolite purposes. -# Konstantinos Sykas (29-Jun-2018): Altered TAR arguments (line 350) to exclude git files -# - -MS_VERSION=2.1.5 -MS_COMMAND="$0" -unset CDPATH - -for f in "${1+"$@"}"; do - MS_COMMAND="$MS_COMMAND \\\\ - \\\"$f\\\"" -done - -# Procedures - -MS_Usage() -{ - echo "Usage: $0 [params] archive_dir file_name label [startup_script] [args]" - echo "params can be one or more of the following :" - echo " --version | -v : Print out Makeself version number and exit" - echo " --help | -h : Print out this help message" - echo " --gzip : Compress using gzip (default if detected)" - echo " --bzip2 : Compress using bzip2 instead of gzip" - echo " --compress : Compress using the UNIX 'compress' command" - echo " --nocomp : Do not compress the data" - echo " --notemp : The archive will create archive_dir in the" - echo " current directory and uncompress in ./archive_dir" - echo " --copy : Upon extraction, the archive will first copy itself to" - echo " a temporary directory" - echo " --append : Append more files to an existing Makeself archive" - echo " The label and startup scripts will then be ignored" - echo " --current : Files will be extracted to the current directory." - echo " Implies --notemp." - echo " --nomd5 : Don't calculate an MD5 for archive" - echo " --nocrc : Don't calculate a CRC for archive" - echo " --header file : Specify location of the header script" - echo " --follow : Follow the symlinks in the archive" - echo " --nox11 : Disable automatic spawn of a xterm" - echo " --nowait : Do not wait for user input after executing embedded" - echo " program from an xterm" - echo " --lsm file : LSM file describing the package" - echo - echo "Do not forget to give a fully qualified startup script name" - echo "(i.e. with a ./ prefix if inside the archive)." - exit 1 -} - -# Default settings -if type gzip 2>&1 > /dev/null; then - COMPRESS=gzip -else - COMPRESS=Unix -fi -KEEP=n -CURRENT=n -NOX11=n -APPEND=n -COPY=none -# -# original source: -# TAR_ARGS=cvf -# -TAR_ARGS=cf -HEADER=`dirname $0`/makeself-header.sh - -# LSM file stuff -LSM_CMD="echo No LSM. >> \"\$archname\"" - -while true -do - case "$1" in - --version | -v) - echo Makeself version $MS_VERSION - exit 0 - ;; - --bzip2) - COMPRESS=bzip2 - shift - ;; - --gzip) - COMPRESS=gzip - shift - ;; - --compress) - COMPRESS=Unix - shift - ;; - --encrypt) - COMPRESS=gpg - shift - ;; - --nocomp) - COMPRESS=none - shift - ;; - --notemp) - KEEP=y - shift - ;; - --copy) - COPY=copy - shift - ;; - --current) - CURRENT=y - KEEP=y - shift - ;; - --header) - HEADER="$2" - shift 2 - ;; - --follow) - TAR_ARGS=cvfh - shift - ;; - --nox11) - NOX11=y - shift - ;; - --nowait) - shift - ;; - --nomd5) - NOMD5=y - shift - ;; - --nocrc) - NOCRC=y - shift - ;; - --append) - APPEND=y - shift - ;; - --lsm) - LSM_CMD="cat \"$2\" >> \"\$archname\"" - shift 2 - ;; - -h | --help) - MS_Usage - ;; - -*) - echo Unrecognized flag : "$1" - MS_Usage - ;; - *) - break - ;; - esac -done - -if test $# -lt 1; then - MS_Usage -else - if test -d "$1"; then - archdir="$1" - else - echo "Directory $1 does not exist." - exit 1 - fi -fi -archname="$2" - -if test "$APPEND" = y; then - if test $# -lt 2; then - MS_Usage - fi - - # Gather the info from the original archive - OLDENV=`sh "$archname" --dumpconf` - if test $? -ne 0; then - echo "Unable to update archive: $archname" >&2 - exit 1 - else - eval "$OLDENV" - fi -else - if test "$KEEP" = n -a $# = 3; then - echo "ERROR: Making a temporary archive with no embedded command does not make sense!" >&2 - echo - MS_Usage - fi - # We don't really want to create an absolute directory... - if test "$CURRENT" = y; then - archdirname="." - else - archdirname=`basename "$1"` - fi - - if test $# -lt 3; then - MS_Usage - fi - - LABEL="$3" - SCRIPT="$4" - test x$SCRIPT = x || shift 1 - shift 3 - SCRIPTARGS="$*" -fi - -if test "$KEEP" = n -a "$CURRENT" = y; then - echo "ERROR: It is A VERY DANGEROUS IDEA to try to combine --notemp and --current." >&2 - exit 1 -fi - -case $COMPRESS in -gzip) - GZIP_CMD="gzip -c9" - GUNZIP_CMD="gzip -cd" - ;; -bzip2) - GZIP_CMD="bzip2 -9" - GUNZIP_CMD="bzip2 -d" - ;; -gpg) - GZIP_CMD="gpg -ac -z9" - GUNZIP_CMD="gpg -d" - ;; -Unix) - GZIP_CMD="compress -cf" - GUNZIP_CMD="exec 2>&-; uncompress -c || test \\\$? -eq 2 || gzip -cd" - ;; -none) - GZIP_CMD="cat" - GUNZIP_CMD="cat" - ;; -esac - -tmpfile="${TMPDIR:=/tmp}/mkself$$" - -if test -f $HEADER; then - oldarchname="$archname" - archname="$tmpfile" - # Generate a fake header to count its lines - SKIP=0 - . $HEADER - SKIP=`cat "$tmpfile" |wc -l` - # Get rid of any spaces - SKIP=`expr $SKIP` - rm -f "$tmpfile" - echo Header is $SKIP lines long >&2 - - archname="$oldarchname" -else - echo "Unable to open header file: $HEADER" >&2 - exit 1 -fi - -echo - -if test "$APPEND" = n; then - if test -f "$archname"; then - echo "WARNING: Overwriting existing file: $archname" >&2 - fi -fi - -USIZE=`du -ks $archdir | cut -f1` -DATE=`LC_ALL=C date` - -if test "." = "$archdirname"; then - if test "$KEEP" = n; then - archdirname="makeself-$$-`date +%Y%m%d%H%M%S`" - fi -fi - -test -d "$archdir" || { echo "Error: $archdir does not exist."; rm -f "$tmpfile"; exit 1; } -echo About to compress $USIZE KB of data... -echo Adding files to archive named \"$archname\"... -exec 3<> "$tmpfile" -# -# original source: -# (cd "$archdir" && ( tar $TAR_ARGS - . | eval "$GZIP_CMD" >&3 ) ) || { echo Aborting: Archive -# directory -# not found or temporary file: "$tmpfile" could not be created.; exec 3>&-; rm -f "$tmpfile"; exit 1; } -# -(cd "$archdir" && ( tar $TAR_ARGS - . --exclude-vcs | eval "$GZIP_CMD" >&3 ) ) || { echo Aborting: Archive -directory -not found or temporary file: "$tmpfile" could not be created.; exec 3>&-; rm -f "$tmpfile"; exit 1; } -exec 3>&- # try to close the archive - -fsize=`cat "$tmpfile" | wc -c | tr -d " "` - -# Compute the checksums - -md5sum=00000000000000000000000000000000 -crcsum=0000000000 - -if test "$NOCRC" = y; then - echo "skipping crc at user request" -else - crcsum=`cat "$tmpfile" | CMD_ENV=xpg4 cksum | sed -e 's/ /Z/' -e 's/ /Z/' | cut -dZ -f1` - echo "CRC: $crcsum" -fi - -if test "$NOMD5" = y; then - echo "skipping md5sum at user request" -else - # Try to locate a MD5 binary - OLD_PATH=$PATH - PATH=${GUESS_MD5_PATH:-"$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} - MD5_ARG="" - MD5_PATH=`exec <&- 2>&-; which md5sum || type md5sum` - test -x $MD5_PATH || MD5_PATH=`exec <&- 2>&-; which md5 || type md5` - test -x $MD5_PATH || MD5_PATH=`exec <&- 2>&-; which digest || type digest` - PATH=$OLD_PATH - if test `basename $MD5_PATH` = digest; then - MD5_ARG="-a md5" - fi - if test -x "$MD5_PATH"; then - md5sum=`cat "$tmpfile" | eval "$MD5_PATH $MD5_ARG" | cut -b-32`; - echo "MD5: $md5sum" - else - echo "MD5: none, MD5 command not found" - fi -fi - -if test "$APPEND" = y; then - mv "$archname" "$archname".bak || exit - - # Prepare entry for new archive - filesizes="$filesizes $fsize" - CRCsum="$CRCsum $crcsum" - MD5sum="$MD5sum $md5sum" - USIZE=`expr $USIZE + $OLDUSIZE` - # Generate the header - . $HEADER - # Append the original data - tail -n +$OLDSKIP "$archname".bak >> "$archname" - # Append the new data - cat "$tmpfile" >> "$archname" - - chmod +x "$archname" - rm -f "$archname".bak - echo Self-extractible archive \"$archname\" successfully updated. -else - filesizes="$fsize" - CRCsum="$crcsum" - MD5sum="$md5sum" - - # Generate the header - . $HEADER - - # Append the compressed tar data after the stub - echo - cat "$tmpfile" >> "$archname" - chmod +x "$archname" - echo Self-extractible archive \"$archname\" successfully created. -fi -rm -f "$tmpfile" diff --git a/installers/posix/setup.body b/installers/posix/setup.body deleted file mode 100644 index 68c2b635c..000000000 --- a/installers/posix/setup.body +++ /dev/null @@ -1,383 +0,0 @@ - -# -# Original by Konstantinos Sykas (26-Mar-2011) -# -# Type: shell script -# Description: The Oolite installation script, executed following the package self-extraction. -# -# 2011-04-03: Updated to facilitate rsync repository setup for oolite-update script -# 2011-04-04: Redirected "which" stderr to /dev/null. In some distros (e.g. Fedora 11, Mint 10 Julia etc.) -# the "which " command uses stderr to report a file not found or other warnings -# 2018-07-02: Add command line arguments support. -# First argument added is "--systemwide-path Directory" -# 2023-07-10: Add interactive parts from oolite.src to startup script based on FreeDesktop tools -# - - -# Handle the command line arguments -OOLITE_VERSION=$1 # This value is given in the make_installer.sh script. Check the line where makeself.sh is called; the last argument. -shift -while true -do - case "$1" in - --systemwide-directory) - INSTALL_ROOT_SYSTEMWIDE=${2:-.}/dummy - INSTALL_ROOT_SYSTEMWIDE=`dirname $INSTALL_ROOT_SYSTEMWIDE` - if [ ! -d "$INSTALL_ROOT_SYSTEMWIDE" ]; then - echo System directory $INSTALL_ROOT_SYSTEMWIDE does not exist. Exiting... - exit 1 - fi - shift 2 - ;; - -*) - echo Unrecognized Oolite setup flag : "$1" >&2 - exit 1 - ;; - *) - break ;; - esac -done - - -# Environment vars init part 1 of 2 -INSTALL_ROOT="" -OOLITE_ROOT_NAME="Oolite${TRUNK}" -OOLITEAPP_NAME="oolite.app" -if [ ! ${INSTALL_ROOT_SYSTEMWIDE} ] -then -INSTALL_ROOT_SYSTEMWIDE="/opt" -fi -INSTALL_ROOT_USERHOME="GNUstep/Applications" # CAUTION! Depending on the usage, this should be sometimes manually pre-pended with $HOME/ -STARTUP_SCRIPTS_PATH_SYSTEMWIDE="/usr/local/bin" -STARTUP_SCRIPTS_PATH_USERHOME="${INSTALL_ROOT_USERHOME}/${OOLITE_ROOT_NAME}" # CAUTION! Depending on the usage, this should be sometimes manually pre-pended with $HOME/ -ERROR_CODE_UNINSTALL_FAILED=111 # arbitrary error code to detect if uninstall did nothing - # NOTE: also used in uninstall[.source] script - - -# System-wide or single user installation selection -# The default option changes depending on if the -# user is root or not. -if [ `id -u` -eq 0 ] -then - USER_IS_ROOT=1 - USER_CHOICES="[S/h]" -else - USER_CHOICES="[s/H]" -fi -if [ ! ${UNATTENDED_INSTALLATION} ] -then - read -p "Install Oolite${TRUNK} system-wide or in your home directory? ${USER_CHOICES} " CHOICE - if [ ${USER_IS_ROOT} ] - then - if [ "x$CHOICE" = "xh" ] || [ "x$CHOICE" = "xH" ] - then - echo "You cannot be root and install Oolite${TRUNK} in your home directory." - exit 1 - fi - else - if [ "x$CHOICE" = "xs" ] || [ "x$CHOICE" = "xS" ] - then - echo "You must be root to install Oolite${TRUNK} system-wide." - exit 1 - fi - fi -fi - - -# Environment vars init part 2 of 2 -ICON_SIZE="48" -if [ ${USER_IS_ROOT} ] -then - INSTALL_ROOT=${INSTALL_ROOT_SYSTEMWIDE} - STARTUP_SCRIPTS_PATH=${STARTUP_SCRIPTS_PATH_SYSTEMWIDE} - DESKTOP_MODE="system" -else - INSTALL_ROOT=$HOME/${INSTALL_ROOT_USERHOME} - STARTUP_SCRIPTS_PATH=$HOME/${STARTUP_SCRIPTS_PATH_USERHOME} - DESKTOP_MODE="user" -fi -OOLITE_ROOT=${INSTALL_ROOT}/${OOLITE_ROOT_NAME} -OOLITEAPP_PATH=${OOLITE_ROOT}/${OOLITEAPP_NAME} -INSTALLER_REPOS=${OOLITEAPP_PATH}/oolite.installer.tmp -SELF_PATH=$(cd $(dirname $0); pwd -P) -SELF_FILENAME=$(basename $0) - - -# Check if uninstall is necessary -# -# a. If user is not root, this script checks if another -# system-wide or current user home directory installation -# exists. -# b. If user is root, this script checks only if another -# system-wide installation exists. -# -# TODO - When user is root this script cannot detect -# if there is an Oolite installation in any -# user home directory. - -# Uninstall, if possible, the current active system-wide installation -if [ ${USER_IS_ROOT} ] -then - OOLITE_SHORTCUT=${STARTUP_SCRIPTS_PATH}/oolite${TRUNK} - if [ -e ${OOLITE_SHORTCUT} ] - then - INSTALL_ROOT_SYSTEMWIDE_ACTIVE=`cat ${OOLITE_SHORTCUT} | head -2 | tail -1` - INSTALL_ROOT_SYSTEMWIDE_ACTIVE=${INSTALL_ROOT_SYSTEMWIDE_ACTIVE%%/Oolite*} - - ${INSTALL_ROOT_SYSTEMWIDE_ACTIVE}/${OOLITE_ROOT_NAME}/uninstall 2> /dev/null - if [ $? -eq ${ERROR_CODE_UNINSTALL_FAILED} ] - then - exit ${ERROR_CODE_UNINSTALL_FAILED} - fi - fi -fi - -# Uninstall user's instalation -${OOLITE_ROOT}/uninstall 2> /dev/null - - -# Start installation -echo "Installing Oolite${TRUNK} in \"${OOLITE_ROOT}\"..." - - -# Generate Oolite root directory and -# copy main oolite binary and Resources -# as well as the rest of the tars -echo -n "Copying oolite executable and resources... " -mkdir -p ${OOLITEAPP_PATH} -cp -pR ${SELF_PATH}/* ${OOLITEAPP_PATH}/. -cd ${OOLITE_ROOT} -# Generate uninstall script -echo "#!/bin/sh" > uninstall -echo >> uninstall -echo >> uninstall -if [ ${TRUNK} ] -then - echo "TRUNK=\"${TRUNK}\"" >> uninstall -fi -echo "OOLITE_ROOT_NAME=\"${OOLITE_ROOT_NAME}\"" >> uninstall -echo "INSTALL_ROOT_SYSTEMWIDE=\"${INSTALL_ROOT_SYSTEMWIDE}\"" >> uninstall -echo "INSTALL_ROOT_USERHOME=\"${INSTALL_ROOT_USERHOME}\"" >> uninstall -echo "STARTUP_SCRIPTS_PATH_SYSTEMWIDE=\"${STARTUP_SCRIPTS_PATH_SYSTEMWIDE}\"" >> uninstall -echo "STARTUP_SCRIPTS_PATH_USERHOME=\"${STARTUP_SCRIPTS_PATH_USERHOME}\"" >> uninstall -echo "ICON_SIZE=\"${ICON_SIZE}\"" >> uninstall -echo "ERROR_CODE_UNINSTALL_FAILED=${ERROR_CODE_UNINSTALL_FAILED}" >> uninstall -cat ${OOLITEAPP_PATH}/uninstall.source >> uninstall -rm -f ${OOLITEAPP_PATH}/uninstall.source -chmod +x uninstall -echo "Done." - -# Install AddOns/Basic-debug.oxp -if [ -f ${INSTALLER_REPOS}/addons.tar.gz ] -then - echo -n "Extracting AddOns/Basic-debug.oxp... " - cd ${OOLITE_ROOT} - tar zxf ${INSTALLER_REPOS}/addons.tar.gz - rm ${INSTALLER_REPOS}/addons.tar.gz - echo "Done." -fi - -# Install documentation -echo -n "Extracting documentation... " -mkdir -p ${OOLITE_ROOT}/doc -cd ${OOLITE_ROOT}/doc -tar zxf ${INSTALLER_REPOS}/oolite.doc.tar.gz -rm ${INSTALLER_REPOS}/oolite.doc.tar.gz -echo "This is the first time you've run the game. Here is the README file -" > README-PREAMBLE.TXT -echo "more docs can be found at ${OOLITE_ROOT_NAME}/doc/" >> README-PREAMBLE.TXT -echo "Press q to exit this document and launch the game" >> README-PREAMBLE.TXT -echo >> README-PREAMBLE.TXT -echo "Done." - -# Copy dependency libraries and DTDs -# Note that we do not install any libraries to the system. -# We just copy them in the Oolite tree structure. -echo -n "Extracting dependencies... " -mkdir -p ${OOLITE_ROOT}/oolite-deps -cd ${OOLITE_ROOT}/oolite-deps -tar zxf ${INSTALLER_REPOS}/oolite.deps.tar.gz -tar zxf ${INSTALLER_REPOS}/oolite.dtd.tar.gz -rm ${INSTALLER_REPOS}/oolite.deps.tar.gz -rm ${INSTALLER_REPOS}/oolite.dtd.tar.gz -echo "Done." - -# Create folder for the OXPs -mkdir -p ${OOLITE_ROOT}/AddOns - -# Generate release.txt used by oolite-update -echo -n "Generating startup and wrapper scripts... " -cd ${OOLITE_ROOT} -# Generate release information -mv ${INSTALLER_REPOS}/release.txt . - -# Generate startup scripts -cd ${STARTUP_SCRIPTS_PATH} - -cat << EOF_STARTUP_SCRIPT > oolite${TRUNK} -#!/bin/sh - -# show readme on first launch -if [ ! -f \$HOME/.Oolite/.oolite${TRUNK}-run ] -then - mkdir -p $HOME/.Oolite/ - touch \$HOME/.Oolite/.oolite${TRUNK}-run - xdg-open file://${OOLITE_ROOT}/doc/README-PREAMBLE.TXT - xdg-open file://${OOLITE_ROOT}/doc/README.TXT -fi - -# launch oolite -${OOLITEAPP_PATH}/oolite-wrapper \$@ -RC=\$? - -# show message in case of error -if [ "\${RC}" != "0" ] -then - notify-send --urgency=critical --icon ${OOLITE_ROOT}/oolite.app/Resources/Textures/oolite-logo1.png "Oolite" "Oolite died in a singularity with exit code \${RC}. For troubleshooting check console and log output." -fi - -exit \${RC} -EOF_STARTUP_SCRIPT - -chmod +x oolite${TRUNK} -echo "#!/bin/sh" > oolite${TRUNK}-update -echo "${OOLITEAPP_PATH}/oolite-update \$@" >> oolite${TRUNK}-update -echo "exit \$?" >> oolite${TRUNK}-update -chmod +x oolite${TRUNK}-update - -# Generate oolite wrapper script -cd ${OOLITEAPP_PATH} -tar zxf ${INSTALLER_REPOS}/oolite.wrap.tar.gz -rm ${INSTALLER_REPOS}/oolite.wrap.tar.gz -# Generate a thick oolite wrapper script as well as -# the oolite-update script -echo "#!/bin/sh" > oolite-wrapper -echo >> oolite-wrapper -echo >> oolite-wrapper -echo "TRUNK=\"${TRUNK}\"" >> oolite-wrapper -cat oolite.src >> oolite-wrapper -rm oolite.src -chmod +x oolite-wrapper - -# Generate oolite update script -echo "#!/bin/sh" > oolite-update -echo >> oolite-update -echo >> oolite-update -echo "TRUNK=\"${TRUNK}\"" >> oolite-update -echo "SELF_PACKAGER=1" >> oolite-update # Just to keep compatibility with autopackage script -echo "OOLITE_ROOT_NAME=\"${OOLITE_ROOT_NAME}\"" >> oolite-update -echo "INSTALL_ROOT_SYSTEMWIDE=\"${INSTALL_ROOT_SYSTEMWIDE}\"" >> oolite-update -echo "INSTALL_ROOT_USERHOME=\"${INSTALL_ROOT_USERHOME}\"" >> oolite-update -cat oolite-update.src >> oolite-update -rm oolite-update.src -chmod +x oolite-update -echo "Done." - -# Install desktop menu and icon -echo -n "Updating desktop menu... " -cd ${OOLITE_ROOT} -tar zxf ${INSTALLER_REPOS}/freedesktop.tar.gz -rm ${INSTALLER_REPOS}/freedesktop.tar.gz - -cd FreeDesktop - -# Ensure no desktop menu conflict with Linux repos oolite installation -awk -v var="Exec=${STARTUP_SCRIPTS_PATH}/oolite${TRUNK}" '{ gsub(/Exec=oolite/,var,$0); print }' oolite.desktop > oolite.desktop.tmp -mv oolite.desktop.tmp oolite.desktop -awk -v var="Icon=oolite${TRUNK}.org-icon" '{ gsub(/Icon=oolite-icon/,var,$0); print }' oolite.desktop > oolite.desktop.tmp -mv oolite.desktop.tmp oolite.desktop -awk -v var="Name=Oolite${TRUNK} (oolite.space)" '{ gsub(/Name=Oolite/,var,$0); print }' oolite.desktop > oolite.desktop.tmp -mv oolite.desktop.tmp oolite${TRUNK}.org.desktop -rm oolite.desktop -mv oolite-icon.png oolite${TRUNK}.org-icon.png -xdg-desktop-menu install --novendor --mode ${DESKTOP_MODE} oolite${TRUNK}.org.desktop 1> /dev/null 2> /dev/null -desktop_rc=$? -if [ $desktop_rc -eq 0 ] -then - rm oolite${TRUNK}.org.desktop - xdg-icon-resource install --novendor --mode ${DESKTOP_MODE} --size ${ICON_SIZE} oolite${TRUNK}.org-icon.png 1> /dev/null 2> /dev/null - icon_rc=$? - if [ $icon_rc -eq 3 ] || [ $icon_rc -eq 4 ] || [ $icon_rc -eq 127 ] - then - echo - echo "Warning $icon_rc: xdg-utils not properly installed. Oolite${TRUNK} icon cannot be installed." - else - if [ $icon_rc -eq 1 ] || [ $icon_rc -eq 2 ] || [ $icon_rc -eq 5 ] - then - echo - echo "Warning $icon_rc: oolite${TRUNK}.org-icon.png not found. Please report this as a broken package." - else - rm oolite${TRUNK}.org-icon.png - fi - fi -else - if [ $desktop_rc -eq 3 ] || [ $desktop_rc -eq 4 ] || [ $desktop_rc -eq 127 ] - then - echo - echo "Warning ${desktop_rc}: xdg-utils not properly installed. Oolite${TRUNK} desktop menu cannot be installed." - else - if [ $desktop_rc -eq 1 ] || [ $desktop_rc -eq 2 ] || [ $desktop_rc -eq 5 ] - then - echo - echo "Warning ${desktop_rc}: oolite${TRUNK}.org.desktop not found. Please report this as a broken package." - fi - fi -fi -if [ $desktop_rc -eq 0 ] && [ $icon_rc -eq 0 ] -then - echo "Done." -fi - -# Clean up -echo -n "Cleaning up temporary folders... " -rc=0 -rm ${OOLITEAPP_PATH}/setup 1> /dev/null 2> /dev/null -if [ $? -ne 0 ] -then - rc=$(($rc+1)) -fi -rmdir ${OOLITE_ROOT}/FreeDesktop 1> /dev/null 2> /dev/null -if [ $? -ne 0 ] -then - rc=$(($rc+2)) -fi -rmdir ${INSTALLER_REPOS} 1> /dev/null 2> /dev/null -if [ $? -ne 0 ] -then - rc=$(($rc+11)) -fi -if [ $rc -gt 10 ] -then - echo - echo "Error ${rc}: Some temporary files and/or folders could not be deleted. Please report this as a broken package." - # Uninstall whatever you can and exit! - exit 1 -else - if [ $rc -gt 0 ] - then - echo "Warning ${rc}: Some temporary files and/or folders could not be deleted." - else - echo "Done." - fi -fi - -# Finished installation! -echo "Finished!" -echo -if [ $desktop_rc -eq 0 ] -then - echo "A desktop menu entry \"Oolite${TRUNK} (oolite.space)\" has been added under Games." -fi -echo -n "To start Oolite${TRUNK} from a shell, " -# check PATH -if [ "`which oolite${TRUNK} 2> /dev/null`" = "${STARTUP_SCRIPTS_PATH}/oolite${TRUNK}" ] -then - echo "run \"oolite${TRUNK}\"." -else - echo "run \"${STARTUP_SCRIPTS_PATH}/oolite${TRUNK}\"." -fi -echo "To uninstall Oolite${TRUNK}, run \"${OOLITE_ROOT}/uninstall\"." -echo - -# Exit with grace! -exit 0 - diff --git a/installers/posix/setup.header b/installers/posix/setup.header deleted file mode 100644 index 13f47935d..000000000 --- a/installers/posix/setup.header +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh - diff --git a/installers/posix/uninstall.source b/installers/posix/uninstall.source deleted file mode 100644 index f5ae20de4..000000000 --- a/installers/posix/uninstall.source +++ /dev/null @@ -1,199 +0,0 @@ - - -# -# Original by Konstantinos Sykas (26-Mar-2011) -# -# Type: shell script -# Description: The Oolite uninstall script. During installation the "setup" script -# adds a header defining the environment variables used below. -# -# 2011-04-03: Updated to facilitate rsync repository setup for oolite-update script -# 2014-06-20: Enhanced error code generation to facilitate error recognition -# Updated to remove ManagedAddOns folder tree -# 2014-07-13: Ambiguous warning message is displayed when Oolite/ManagedAddOns -# folder does not exist. Added check before trying to remove it. -# Updated error handling to report the folders which were not empty and -# could not be removed. -# 2014-07-14: Replaced '~' by $HOME environment variable. -# Fixed a warning visualization issue. -# 2014-07-15: Added checks to remove Oolite and Managed Add-ons parent folders only -# if all subfolders are removed. -# - - -FOLDER_MASK_DOC=0x01 -FOLDER_MASK_ADDONS=0x02 -FOLDER_MASK_APP=0x04 -FOLDER_MASK_OOLITE=0x08 -FOLDER_MASK_MNGADDONS=0x10 -FOLDER_MASK_MNGOOLITE=0x20 - -rm_rc=0 # Initialize (r)e(m)ove (r)eturn (c)ode counter -SELF_PATH=$(cd $(dirname $0); pwd -P) -SELF_FILENAME=$(basename $0) -echo -n "Removing Oolite${TRUNK} from \"${SELF_PATH}\"... " - -# Refuse automated uninstall of a relocated installation -if [ "${SELF_PATH}" != "$HOME/${INSTALL_ROOT_USERHOME}/${OOLITE_ROOT_NAME}" ] && [ "${SELF_PATH}" != "${INSTALL_ROOT_SYSTEMWIDE}/${OOLITE_ROOT_NAME}" ] -then - echo - echo "Error: Oolite${TRUNK} installation has been relocated from its original path." - exit ${ERROR_CODE_UNINSTALL_FAILED} -fi - -# Get user root-status and setup env accordingly -if [ `id -u` -eq 0 ] -then - USER_IS_ROOT=1 - - # Setup env for root uninstall - OOLITE_ROOT="${INSTALL_ROOT_SYSTEMWIDE}/${OOLITE_ROOT_NAME}" - STARTUP_SCRIPTS_PATH="${STARTUP_SCRIPTS_PATH_SYSTEMWIDE}" - DESKTOP_MODE="system" - - # Check if we have the right privileges to proceed with removal - if [ "${SELF_PATH}" != "${OOLITE_ROOT}" ] - then - echo - echo "Error: You are root and try to uninstall a home-directory Oolite${TRUNK} installation." - echo " If you're using sudo, you don't need it this time." - exit ${ERROR_CODE_UNINSTALL_FAILED} - fi -else - # Setup env for user home directory uninstall - OOLITE_ROOT="$HOME/${INSTALL_ROOT_USERHOME}/${OOLITE_ROOT_NAME}" - STARTUP_SCRIPTS_PATH="$HOME/${STARTUP_SCRIPTS_PATH_USERHOME}" - DESKTOP_MODE="user" - - # Check if we have the right privileges to proceed with removal - if [ "${SELF_PATH}" != "${OOLITE_ROOT}" ] - then - echo - echo "Error: Oolite${TRUNK} was installed by root, so you must be root to uninstall it." - exit ${ERROR_CODE_UNINSTALL_FAILED} - fi -fi - -# Check if this is not the active Oolite systemwide installation -if [ ${USER_IS_ROOT} ] -then - OOLITE_SHORTCUT=${STARTUP_SCRIPTS_PATH}/oolite${TRUNK} - if [ -e ${OOLITE_SHORTCUT} ] - then - INSTALL_ROOT_SYSTEMWIDE_ACTIVE=`cat ${OOLITE_SHORTCUT} | head -2 | tail -1` - INSTALL_ROOT_SYSTEMWIDE_ACTIVE=${INSTALL_ROOT_SYSTEMWIDE_ACTIVE%%/Oolite*} - if [ "${INSTALL_ROOT_SYSTEMWIDE}" != "${INSTALL_ROOT_SYSTEMWIDE_ACTIVE}" ] - then - echo - echo "Error: The Oolite${TRUNK} startup scripts indicate another systemwide installation is active. Automatic uninstall will now exit to avoid impairing the active installation." - exit ${ERROR_CODE_UNINSTALL_FAILED} - fi - fi -fi - - -# Remove Oolite - -echo -cd ${OOLITE_ROOT} - -# Remove Oolite menu -xdg-desktop-menu uninstall --novendor --mode ${DESKTOP_MODE} oolite${TRUNK}.org.desktop 1> /dev/null 2> /dev/null -xdg-icon-resource uninstall --novendor --mode ${DESKTOP_MODE} --size ${ICON_SIZE} oolite${TRUNK}.org-icon.png 1> /dev/null 2> /dev/null - -# Only remove known files from oolite root and oolite startup scripts path -rm -f release.txt 1> /dev/null 2> /dev/null -rm -f ${STARTUP_SCRIPTS_PATH}/oolite${TRUNK} 1> /dev/null 2> /dev/null -rm -f ${STARTUP_SCRIPTS_PATH}/oolite${TRUNK}-update 1> /dev/null 2> /dev/null - -# Unconditionally remove FreeDesktop/ in case setup left it there -rm -rf FreeDesktop/ 1> /dev/null 2> /dev/null - -# Unconditionally remove oolite-deps/ -rm -rf oolite-deps/ 1> /dev/null 2> /dev/null - -# Only remove known files from doc/ and -# delete doc/ if it is empty -rm -f doc/AdviceForNewCommanders.pdf 1> /dev/null 2> /dev/null -rm -f doc/CHANGELOG.TXT 1> /dev/null 2> /dev/null -rm -f doc/OoliteReadMe.pdf 1> /dev/null 2> /dev/null -rm -f doc/OoliteRS.pdf 1> /dev/null 2> /dev/null -rm -f doc/README-PREAMBLE.TXT 1> /dev/null 2> /dev/null -rm -f doc/README.TXT 1> /dev/null 2> /dev/null -rmdir doc/ 1> /dev/null 2> /dev/null -if [ $? -ne 0 ] -then - rm_rc=$(($rm_rc+$FOLDER_MASK_DOC)) - echo "Warning: Unable to remove ${OOLITE_ROOT}/doc/. The folder is not empty." -fi - -# Only remove add-on placed by setup and -# delete AddOns/ if it is empty -rm -rf AddOns/Basic-debug.oxp/ 1> /dev/null 2> /dev/null -rmdir AddOns/ 1> /dev/null 2> /dev/null -if [ $? -ne 0 ] -then - rm_rc=$(($rm_rc+$FOLDER_MASK_ADDONS)) - echo "Warning: Unable to remove ${OOLITE_ROOT}/AddOns/. The folder is not empty." -fi - -# Only remove known files from oolite.app/ and -# unconditionally remove oolite.app/Resources/ and -# delete oolite.app/ if it is empty -rm -f oolite.app/oolite 1> /dev/null 2> /dev/null -rm -f oolite.app/oolite-update 1> /dev/null 2> /dev/null -rm -f oolite.app/oolite-wrapper 1> /dev/null 2> /dev/null -rm -rf oolite.app/Resources/ 1> /dev/null 2> /dev/null -rmdir oolite.app/ 1> /dev/null 2> /dev/null -if [ $? -ne 0 ] -then - rm_rc=$(($rm_rc+$FOLDER_MASK_APP)) - echo "Warning: Unable to remove ${OOLITE_ROOT}/oolite.app/. The folder is not empty." -fi - -# Remove uninstall script -rm -f ${SELF_FILENAME} - -# Remove Oolite/ root folder if it is empty -if [ $rm_rc -eq 0 ]; then # Proceed to parent folder removal only if subfolders are removed - rmdir ${OOLITE_ROOT}/ 1> /dev/null 2> /dev/null - if [ $? -ne 0 ] - then - rm_rc=$(($rm_rc+$FOLDER_MASK_OOLITE)) - echo "Warning: Unable to remove ${OOLITE_ROOT}/. The folder is not empty." - fi -fi - -# Remove Oolite/ManagedAddOns folder if it is empty -if [ -d "$HOME/GNUstep/Library/ApplicationSupport/Oolite" ]; then - if [ -d "$HOME/GNUstep/Library/ApplicationSupport/Oolite/ManagedAddOns" ]; then - rmdir $HOME/GNUstep/Library/ApplicationSupport/Oolite/ManagedAddOns/ 1> /dev/null 2> /dev/null - if [ $? -ne 0 ] - then - rm_rc=$(($rm_rc+$FOLDER_MASK_MNGADDONS)) - echo "Warning: Unable to remove $HOME/GNUstep/Library/ApplicationSupport/Oolite/ManagedAddOns/. The folder is not empty." - fi - fi - - subfolders_deleted=$(($rm_rc & $FOLDER_MASK_MNGADDONS)) - if [ $subfolders_deleted -eq 0 ]; then # Proceed to parent folder removal only if subfolder is removed - rmdir $HOME/GNUstep/Library/ApplicationSupport/Oolite/ 1> /dev/null 2> /dev/null - if [ $? -ne 0 ] - then - rm_rc=$(($rm_rc+$FOLDER_MASK_MNGOOLITE)) - echo "Warning: Unable to remove $HOME/GNUstep/Library/ApplicationSupport/Oolite/. The folder is not empty." - fi - fi -fi - - -# Finished uninstall! -if [ $rm_rc -ne 0 ] -then - echo "Finished with warnings." -else - echo "Done." -fi - -# Exit with grace -exit $rm_rc diff --git a/tools/mknightly b/tools/mknightly deleted file mode 100755 index b4b0546d4..000000000 --- a/tools/mknightly +++ /dev/null @@ -1,88 +0,0 @@ -#!/bin/sh -# This shell script is used to make a nightly GNUstep/SDL build from -# cron. It is intended to update an rsync repository. -# -# Arguments: -# tools/mknightly -# -# where destination is the rsync repository. The destination must already -# exist. -# -# The script should be run from the root of the svn working copy. -# -# Dylan Smith, 2006-03-10 -# - -OS=`uname` -CPU=`uname -m` -VERSION=`grep SoftwareVersion installers/autopackage/default.x86.apspec|cut -d ' ' -f 2` -DESTINATION=$1 -TREEROOT=`pwd` - -if [ "$DESTINATION" == "" ] -then - echo "Usage: tools/mknightly " - exit 255 -fi - -if [ "$VERSION" == "" ] -then - echo "I can't find the apspec file. This script needs to be run from" - echo "the repository top level directory to find all it needs." - exit 255 -fi - -svn up >/dev/null -if [ $? != 0 ] -then - echo "Nightly build could not svn up" - exit 255 -fi - -# check whether we should even bother building -LASTBUILD=`cat LASTBUILD` -THISBUILD=`svn info . | grep Revision | cut -d ' ' -f 2` -if [ $? != 0 ] -then - echo "Could not get build revision" - exit 255 -fi - -if [ "$LASTBUILD" == "$THISBUILD" ] -then - echo "Nightly build up to date - lastbuild=$LASTBUILD thisbuild=$THISBUILD" - exit 0 -fi - -if [ "$CPU" == 'i686' ] -then - CPU="x86" -fi -DEPSDIR="$TREEROOT/deps/$OS-$CPU-deps" - -if [ ! -d $DEPSDIR ] -then - echo "Dependencies directory $DEPSDIR not found" - exit 255 -fi - -make > make.out 2> make.error -if [ $? != 0 ] -then - echo "Oolite mknightly died." - exit $? -fi - -echo $THISBUILD > LASTBUILD -svn log > $DESTINATION/changelog.txt -cp -rf oolite.app $DESTINATION -cd $DEPSDIR -cp -rf oolite-deps $DESTINATION -find $DESTINATION -name .svn -exec rm -rf {} \; 2>/dev/null -cd $DESTINATION -echo $VERSION-$THISBUILD > release.txt -echo "Oolite-$OS $CPU (`whoami`@`uname -n`) SVN revision $THISBUILD" \ - > buildinfo.txt -echo "Build date: `date`" >> buildinfo.txt -echo "Nightly build complete for Oolite-$OS version $VERSION-$THISBUILD" - diff --git a/tools/mksrctarballs b/tools/mksrctarballs deleted file mode 100755 index 5795b7af4..000000000 --- a/tools/mksrctarballs +++ /dev/null @@ -1,77 +0,0 @@ -#!/bin/sh -VERSION=`grep SoftwareVersion installers/autopackage/default.x86.apspec|cut -d ' ' -f 2` -DESTINATION=`pwd`/TarballPackages -TREEROOT=`pwd` - -if [ "$VERSION" == "" ] -then - echo "I can't find the apspec file. This script needs to be run from" - echo "the repository top level directory to find all it needs." - exit 255 -fi - -if [ -e $DESTINATION/oolite-$VERSION-src.tar.gz ]; then - echo "Source Tarball for Version $VERSION already exists" - # TODO - query / param to continue anyway - exit 0 -fi - -# clear out the cruft -rm -rf $DESTINATION/oolite-$VERSION-src -rm -f $DESTINATION/oolite-$VERSION-src.tar.gz -rm -rf $DESTINATION/oolite-$VERSION-data -rm -f $DESTINATION/oolite-$VERSION-data.tar.gz - -if ! mkdir -p $DESTINATION/oolite-$VERSION-src; -then - echo "Couldn't create directory for the source files" - exit 255 -fi - -if ! mkdir -p $DESTINATION/oolite-$VERSION-data; -then - echo "Couldn't create directory for the data files" - exit 255 -fi - -for i in autopackage debian deps Doc FreeDesktop installers Schemata Oolite-importer Oolite.xcodeproj src tools GNUmakefile GNUmakefile.postamble Makefile README.txt contributors.txt -do - if ! cp -r $i $DESTINATION/oolite-$VERSION-src; - then - echo "Failed to copy $i to $DESTINATION/oolite-$VERSION-src" - exit 255 - fi -done - -if ! cp -r Resources $DESTINATION/oolite-$VERSION-data; -then - echo "Failed to copy Resources to $DESTINATION/oolite-$VERSION-data" - exit 255 -fi - -# Save the SVN Revision number in the source tarball for the tools/mkversion script -echo `tools/mkversion --subversion` > $DESTINATION/oolite-$VERSION-src/svnrevision - -#echo "Press a key to continue" -#read -s -n 1 - -cd $DESTINATION -mv oolite-$VERSION-src oolite-$VERSION -if ! tar zcf oolite-$VERSION-src.tar.gz oolite-$VERSION --exclude .svn -then - echo "Failed to create src tarball" - exit 255 -fi - -# so the data tarball has the same path as src -rm -rf oolite-$VERSION -mv oolite-$VERSION-data oolite-$VERSION -if ! tar zcf oolite-$VERSION-data.tar.gz oolite-$VERSION --exclude .svn -then - echo "Failed to create data tarball" - exit 255 -fi - -rm -rf oolite-$VERSION -echo "Tarballs placed in $DESTINATION." - diff --git a/tools/mkwininst.sh b/tools/mkwininst.sh deleted file mode 100644 index 9a124831d..000000000 --- a/tools/mkwininst.sh +++ /dev/null @@ -1,38 +0,0 @@ -# Assumed to be running in trunk - -export SRC="/c/Program Files/Oolite" -export DST=$GNUSTEP_LOCAL_ROOT/oolite/tmp -export VER=`awk -- '/SoftwareVersion/ { print $2 }' installers/autopackage/default.x86.apspec` -echo building: $VER - -if [ -d $DST ]; then - echo "removing old setup files" - rm -rf $DST -fi - -mkdir $DST -mkdir $DST/oolite.app -mkdir $DST/AddOns - -echo "coping existing installation to setup folder" -cp "$SRC/"* $DST -cp -r "$SRC/oolite.app/"* $DST/oolite.app - -echo "cleaning up unwanted files" -rm $DST/*.txt -rm $DST/*.exe -rm $DST/*.bat - -rm -rf $DST/oolite.app/GNUstep/Defaults/.GNUstepDefaults -rm -rf $DST/oolite.app/oolite-saves/* - -echo "making Oolite" -make - -echo "copying new build to setup folder" -cp -r oolite.app/* $DST/oolite.app -rm $DST/oolite.app/oolite.exe.a - -echo "making installer" -cd installers/win32 -"/c/Program Files/NSIS/makensis" oolite.nsi diff --git a/tools/mkwinsnapshotinst.sh b/tools/mkwinsnapshotinst.sh deleted file mode 100644 index 702773ccf..000000000 --- a/tools/mkwinsnapshotinst.sh +++ /dev/null @@ -1,38 +0,0 @@ -# Assumed to be running in the root of a working copy (eg trunk, tags/1.64, etc) -# so this script has to be run like: tools/mkwinsnapshotinst.sh - -svn up - -export SRC="/c/Program Files/Oolite" -export DST=$GNUSTEP_LOCAL_ROOT/oolite/tmp -export VER=`awk -- '/SoftwareVersion/ { print $2 }' installers/autopackage/default.x86.apspec` -export SVNREV=`svn info . | awk -- '/Revision:/ { print $2 }'` -echo building: $VER from svn revision $SVNREV - -if [ -d $DST ]; then - echo "removing old setup files" - rm -rf $DST -fi - -mkdir $DST -mkdir $DST/oolite.app -mkdir $DST/AddOns - -echo "making Oolite" -make clean -make debug=no - -echo "copying new build to setup folder" -cp -r oolite.app/* $DST/oolite.app -rm $DST/oolite.app/oolite.exe.a -find $DST -type d -name '.svn' -exec rm -rf {} \; -cp deps/Windows-x86-deps/DLLs/* $DST/oolite.app - -echo "making installer" -cd installers/win32 - -echo Oolite v$VER, snapshot build of svn revision $SVNREV \(`date -I`\) >$DST/Oolite_Readme.txt -cat Oolite_Readme.txt >>$DST/Oolite_Readme.txt -cp ../../Doc/OoliteRS.pdf $DST - -"/c/Program Files/NSIS/makensis" OoliteSnapshot_ModernUI.nsi From ef8f60859d7cbde6fdfcb47d4037c2832777bee9 Mon Sep 17 00:00:00 2001 From: mcarans Date: Wed, 15 Apr 2026 10:11:44 +1200 Subject: [PATCH 3/4] Put 2 espeak files in Resources Remove remaining deps submodules and folders --- .gitmodules | 3 - .relative_gitmodules | 3 - Resources/espeak-ng-data/voices/!v/f2 | 22 + Resources/espeak-ng-data/voices/default | 4 + ShellScripts/common/post_build.sh | 6 +- deps/Cocoa-deps/Ogg Vorbis/COPYING | 28 - .../Ogg Vorbis/Ogg.xcodeproj/project.pbxproj | 334 --- .../Vorbis.xcodeproj/project.pbxproj | 605 ---- deps/Cocoa-deps/libjs/NativeUniversal.cpp | 5 - deps/Cocoa-deps/libjs/_pr_bld.h | 3 - deps/Cocoa-deps/libjs/js-config.h | 52 - deps/Cocoa-deps/libjs/js-oolite-prefix.h | 74 - deps/Cocoa-deps/libjs/js-oolite-shim.cpp | 12 - .../Cocoa-deps/libjs/jsapitests-oolite-shim.m | 23 - deps/Cocoa-deps/libjs/jsautocfg.h | 21 - deps/Cocoa-deps/libjs/jsutil.cpp | 412 --- .../libjs/libjs.xcodeproj/project.pbxproj | 2463 ----------------- deps/Cocoa-deps/libjs/os_Darwin_universal.s | 5 - deps/Cocoa-deps/libjs/pr-oolite-prefix.h | 2 - deps/Cocoa-deps/libjs/pr-oolite-shim.m | 53 - .../libpng/libpng.xcodeproj/project.pbxproj | 334 --- deps/Cocoa-deps/libpng/pnglibconf.h | 189 -- deps/Cocoa-deps/scripts/update-library.sh | 115 - deps/Cocoa-deps/scripts/update-mozilla.sh | 125 - deps/Cocoa-deps/scripts/update-sparkle.sh | 116 - deps/Cross-platform-deps | 1 - 26 files changed, 29 insertions(+), 4981 deletions(-) create mode 100644 Resources/espeak-ng-data/voices/!v/f2 create mode 100644 Resources/espeak-ng-data/voices/default delete mode 100644 deps/Cocoa-deps/Ogg Vorbis/COPYING delete mode 100644 deps/Cocoa-deps/Ogg Vorbis/Ogg.xcodeproj/project.pbxproj delete mode 100644 deps/Cocoa-deps/Ogg Vorbis/Vorbis.xcodeproj/project.pbxproj delete mode 100644 deps/Cocoa-deps/libjs/NativeUniversal.cpp delete mode 100644 deps/Cocoa-deps/libjs/_pr_bld.h delete mode 100644 deps/Cocoa-deps/libjs/js-config.h delete mode 100644 deps/Cocoa-deps/libjs/js-oolite-prefix.h delete mode 100644 deps/Cocoa-deps/libjs/js-oolite-shim.cpp delete mode 100644 deps/Cocoa-deps/libjs/jsapitests-oolite-shim.m delete mode 100644 deps/Cocoa-deps/libjs/jsautocfg.h delete mode 100644 deps/Cocoa-deps/libjs/jsutil.cpp delete mode 100644 deps/Cocoa-deps/libjs/libjs.xcodeproj/project.pbxproj delete mode 100644 deps/Cocoa-deps/libjs/os_Darwin_universal.s delete mode 100644 deps/Cocoa-deps/libjs/pr-oolite-prefix.h delete mode 100644 deps/Cocoa-deps/libjs/pr-oolite-shim.m delete mode 100644 deps/Cocoa-deps/libpng/libpng.xcodeproj/project.pbxproj delete mode 100644 deps/Cocoa-deps/libpng/pnglibconf.h delete mode 100755 deps/Cocoa-deps/scripts/update-library.sh delete mode 100755 deps/Cocoa-deps/scripts/update-mozilla.sh delete mode 100755 deps/Cocoa-deps/scripts/update-sparkle.sh delete mode 160000 deps/Cross-platform-deps diff --git a/.gitmodules b/.gitmodules index f9bd1feb7..ee5bb68ff 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ [submodule "Resources/Binary"] path = Resources/Binary url = https://github.com/OoliteProject/oolite-binary-resources.git -[submodule "deps/Cross-platform-deps"] - path = deps/Cross-platform-deps - url = https://github.com/OoliteProject/oolite-sdl-dependencies.git diff --git a/.relative_gitmodules b/.relative_gitmodules index af8e1cc2f..7ce8c51fc 100644 --- a/.relative_gitmodules +++ b/.relative_gitmodules @@ -1,6 +1,3 @@ [submodule "Resources/Binary"] path = Resources/Binary url = ../oolite-binary-resources.git -[submodule "deps/Cross-platform-deps"] - path = deps/Cross-platform-deps - url = ../oolite-sdl-dependencies.git diff --git a/Resources/espeak-ng-data/voices/!v/f2 b/Resources/espeak-ng-data/voices/!v/f2 new file mode 100644 index 000000000..621e18498 --- /dev/null +++ b/Resources/espeak-ng-data/voices/!v/f2 @@ -0,0 +1,22 @@ +language variant +name female2 +gender female + +pitch 188 228 +roughness 0 + +formant 0 105 80 150 +formant 1 110 80 160 +formant 2 110 70 150 +formant 3 110 70 150 +formant 4 115 80 200 +formant 5 115 80 100 +formant 6 110 70 150 +formant 7 110 70 100 +formant 8 110 70 150 + +stressAdd 0 0 -10 -10 0 0 10 40 +breath 0 2 3 3 3 3 0 5 +echo 140 10 +voicing 20 +breathw 150 150 200 200 400 400 diff --git a/Resources/espeak-ng-data/voices/default b/Resources/espeak-ng-data/voices/default new file mode 100644 index 000000000..98160de49 --- /dev/null +++ b/Resources/espeak-ng-data/voices/default @@ -0,0 +1,4 @@ +name default +language en-rp +gender male + diff --git a/ShellScripts/common/post_build.sh b/ShellScripts/common/post_build.sh index 8921bf647..8dee04755 100755 --- a/ShellScripts/common/post_build.sh +++ b/ShellScripts/common/post_build.sh @@ -79,10 +79,10 @@ run_script() { fi # Replace specific voices with Oolite-specific versions - rm -f "$PROGDIR/Resources/espeak-ng-data/voices/default" rm -f "$PROGDIR/Resources/espeak-ng-data/voices/!v/f2" - cp -fu deps/Cross-platform-deps/espeak-data/voices/!v/f2 "$PROGDIR/Resources/espeak-ng-data/voices/!v/f2" - cp -fu deps/Cross-platform-deps/espeak-data/voices/default "$PROGDIR/Resources/espeak-ng-data/voices/default" + cp -fu Resources/espeak-ng-data/voices/!v/f2 "$PROGDIR/Resources/espeak-ng-data/voices/!v/f2" + rm -f "$PROGDIR/Resources/espeak-ng-data/voices/default" + cp -fu Resources/espeak-ng-data/voices/default "$PROGDIR/Resources/espeak-ng-data/voices/default" fi # Strip binary if requested diff --git a/deps/Cocoa-deps/Ogg Vorbis/COPYING b/deps/Cocoa-deps/Ogg Vorbis/COPYING deleted file mode 100644 index 6111c6c5a..000000000 --- a/deps/Cocoa-deps/Ogg Vorbis/COPYING +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2002, Xiph.org Foundation - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -- Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - -- Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. - -- Neither the name of the Xiph.org Foundation nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION -OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/deps/Cocoa-deps/Ogg Vorbis/Ogg.xcodeproj/project.pbxproj b/deps/Cocoa-deps/Ogg Vorbis/Ogg.xcodeproj/project.pbxproj deleted file mode 100644 index c1f1734d7..000000000 --- a/deps/Cocoa-deps/Ogg Vorbis/Ogg.xcodeproj/project.pbxproj +++ /dev/null @@ -1,334 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 1AE344C812CB6E6900FD8C62 /* ogg.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE344C612CB6E6900FD8C62 /* ogg.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AE344C912CB6E6900FD8C62 /* os_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE344C712CB6E6900FD8C62 /* os_types.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AE344CD12CB6EA500FD8C62 /* bitwise.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AE344CB12CB6EA500FD8C62 /* bitwise.c */; }; - 1AE344CE12CB6EA500FD8C62 /* framing.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AE344CC12CB6EA500FD8C62 /* framing.c */; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - 1ADE32A40975807900961AE2 /* libogg_for_oolite.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libogg_for_oolite.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1AE344C612CB6E6900FD8C62 /* ogg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ogg.h; sourceTree = ""; }; - 1AE344C712CB6E6900FD8C62 /* os_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = os_types.h; sourceTree = ""; }; - 1AE344CB12CB6EA500FD8C62 /* bitwise.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bitwise.c; sourceTree = ""; }; - 1AE344CC12CB6EA500FD8C62 /* framing.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = framing.c; sourceTree = ""; }; - 1AE344D312CB6F4F00FD8C62 /* oolite-targets.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "oolite-targets.xcconfig"; path = "../../../src/Cocoa/oolite-targets.xcconfig"; sourceTree = SOURCE_ROOT; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 1ADE32A20975807900961AE2 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 034768DDFF38A45A11DB9C8B /* Products */ = { - isa = PBXGroup; - children = ( - 1ADE32A40975807900961AE2 /* libogg_for_oolite.a */, - ); - name = Products; - sourceTree = ""; - }; - 0867D691FE84028FC02AAC07 /* Ogg */ = { - isa = PBXGroup; - children = ( - 1AE344D312CB6F4F00FD8C62 /* oolite-targets.xcconfig */, - 730F235F09181A3E00AB638C /* Headers */, - 08FB77ACFE841707C02AAC07 /* src */, - 0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */, - 034768DDFF38A45A11DB9C8B /* Products */, - ); - name = Ogg; - sourceTree = ""; - }; - 0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */ = { - isa = PBXGroup; - children = ( - ); - name = "External Frameworks and Libraries"; - sourceTree = ""; - }; - 08FB77ACFE841707C02AAC07 /* src */ = { - isa = PBXGroup; - children = ( - 1AE344CB12CB6EA500FD8C62 /* bitwise.c */, - 1AE344CC12CB6EA500FD8C62 /* framing.c */, - ); - name = src; - path = ../../libogg/src; - sourceTree = ""; - }; - 730F235F09181A3E00AB638C /* Headers */ = { - isa = PBXGroup; - children = ( - 1AE344C612CB6E6900FD8C62 /* ogg.h */, - 1AE344C712CB6E6900FD8C62 /* os_types.h */, - ); - name = Headers; - path = ../../libogg/include/ogg; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 1ADE32A00975807900961AE2 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1AE344C812CB6E6900FD8C62 /* ogg.h in Headers */, - 1AE344C912CB6E6900FD8C62 /* os_types.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 1ADE32A30975807900961AE2 /* LibOgg */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1ADE32B7097580C800961AE2 /* Build configuration list for PBXNativeTarget "LibOgg" */; - buildPhases = ( - 1ADE32A00975807900961AE2 /* Headers */, - 1ADE32A10975807900961AE2 /* Sources */, - 1ADE32A20975807900961AE2 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = LibOgg; - productName = LibOgg; - productReference = 1ADE32A40975807900961AE2 /* libogg_for_oolite.a */; - productType = "com.apple.product-type.library.static"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 0867D690FE84028FC02AAC07 /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 0700; - }; - buildConfigurationList = 730F235809181A3A00AB638C /* Build configuration list for PBXProject "Ogg" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 1; - knownRegions = ( - English, - Japanese, - French, - German, - ); - mainGroup = 0867D691FE84028FC02AAC07 /* Ogg */; - productRefGroup = 034768DDFF38A45A11DB9C8B /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 1ADE32A30975807900961AE2 /* LibOgg */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXSourcesBuildPhase section */ - 1ADE32A10975807900961AE2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1AE344CD12CB6EA500FD8C62 /* bitwise.c in Sources */, - 1AE344CE12CB6EA500FD8C62 /* framing.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin XCBuildConfiguration section */ - 1ADE32B9097580C800961AE2 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - GCC_AUTO_VECTORIZATION = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 3; - HEADER_SEARCH_PATHS = ../../libogg/include; - INSTALL_PATH = /usr/local/lib; - LLVM_LTO = YES; - PRODUCT_NAME = ogg_for_oolite; - PUBLIC_HEADERS_FOLDER_PATH = include/ogg; - SYMROOT = ../../../build; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 1AE344EE12CB70B800FD8C62 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1AE344D312CB6F4F00FD8C62 /* oolite-targets.xcconfig */; - buildSettings = { - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = __MACOSX__; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - ONLY_ACTIVE_ARCH = YES; - }; - name = Debug; - }; - 1AE344EF12CB70B800FD8C62 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - GCC_AUTO_VECTORIZATION = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 3; - HEADER_SEARCH_PATHS = ../../libogg/include; - INSTALL_PATH = /usr/local/lib; - LLVM_LTO = YES; - PRODUCT_NAME = ogg_for_oolite; - PUBLIC_HEADERS_FOLDER_PATH = include/ogg; - SYMROOT = ../../../build; - ZERO_LINK = NO; - }; - name = Debug; - }; - 1AE344F012CB70BF00FD8C62 /* TestRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1AE344D312CB6F4F00FD8C62 /* oolite-targets.xcconfig */; - buildSettings = { - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = __MACOSX__; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - }; - name = TestRelease; - }; - 1AE344F112CB70BF00FD8C62 /* TestRelease */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - GCC_AUTO_VECTORIZATION = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 3; - HEADER_SEARCH_PATHS = ../../libogg/include; - INSTALL_PATH = /usr/local/lib; - LLVM_LTO = NO; - PRODUCT_NAME = ogg_for_oolite; - PUBLIC_HEADERS_FOLDER_PATH = include/ogg; - SYMROOT = ../../../build; - ZERO_LINK = NO; - }; - name = TestRelease; - }; - 730F235A09181A3A00AB638C /* Deployment */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1AE344D312CB6F4F00FD8C62 /* oolite-targets.xcconfig */; - buildSettings = { - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = __MACOSX__; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - }; - name = Deployment; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 1ADE32B7097580C800961AE2 /* Build configuration list for PBXNativeTarget "LibOgg" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1ADE32B9097580C800961AE2 /* Deployment */, - 1AE344EF12CB70B800FD8C62 /* Debug */, - 1AE344F112CB70BF00FD8C62 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 730F235809181A3A00AB638C /* Build configuration list for PBXProject "Ogg" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 730F235A09181A3A00AB638C /* Deployment */, - 1AE344EE12CB70B800FD8C62 /* Debug */, - 1AE344F012CB70BF00FD8C62 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; -/* End XCConfigurationList section */ - }; - rootObject = 0867D690FE84028FC02AAC07 /* Project object */; -} diff --git a/deps/Cocoa-deps/Ogg Vorbis/Vorbis.xcodeproj/project.pbxproj b/deps/Cocoa-deps/Ogg Vorbis/Vorbis.xcodeproj/project.pbxproj deleted file mode 100644 index a4709a894..000000000 --- a/deps/Cocoa-deps/Ogg Vorbis/Vorbis.xcodeproj/project.pbxproj +++ /dev/null @@ -1,605 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 1ADE327809757FCF00961AE2 /* analysis.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F60A03389C830112CE8F /* analysis.c */; }; - 1ADE327A09757FD200961AE2 /* bitrate.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F60D03389C830112CE8F /* bitrate.c */; }; - 1ADE327B09757FD500961AE2 /* block.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F60F03389C830112CE8F /* block.c */; }; - 1ADE327C09757FD500961AE2 /* codebook.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F62303389C830112CE8F /* codebook.c */; }; - 1ADE32880975800000961AE2 /* envelope.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F62603389C830112CE8F /* envelope.c */; }; - 1ADE32890975800000961AE2 /* floor0.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F62803389C830112CE8F /* floor0.c */; }; - 1ADE328A0975800100961AE2 /* floor1.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F62903389C830112CE8F /* floor1.c */; }; - 1ADE328B0975800100961AE2 /* info.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F62B03389C830112CE8F /* info.c */; }; - 1ADE328C0975800200961AE2 /* lookup.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F62C03389C830112CE8F /* lookup.c */; }; - 1ADE328D0975800200961AE2 /* lpc.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F63003389C830112CE8F /* lpc.c */; }; - 1ADE328E0975800300961AE2 /* lsp.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F63203389C830112CE8F /* lsp.c */; }; - 1ADE328F0975800400961AE2 /* mapping0.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F63603389C830112CE8F /* mapping0.c */; }; - 1ADE32900975800500961AE2 /* mdct.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F63803389C830112CE8F /* mdct.c */; }; - 1ADE32910975800700961AE2 /* psy.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F65203389C830112CE8F /* psy.c */; }; - 1ADE32930975800800961AE2 /* registry.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F65503389C830112CE8F /* registry.c */; }; - 1ADE32940975800900961AE2 /* res0.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F65703389C830112CE8F /* res0.c */; }; - 1ADE32950975800A00961AE2 /* sharedbook.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F65903389C830112CE8F /* sharedbook.c */; }; - 1ADE32960975800A00961AE2 /* smallft.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F65A03389C830112CE8F /* smallft.c */; }; - 1ADE32970975800B00961AE2 /* synthesis.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F65C03389C830112CE8F /* synthesis.c */; }; - 1ADE32990975800C00961AE2 /* vorbisenc.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F65E03389C830112CE8F /* vorbisenc.c */; }; - 1ADE329A0975800E00961AE2 /* vorbisfile.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F65F03389C830112CE8F /* vorbisfile.c */; }; - 1ADE329B0975800E00961AE2 /* window.c in Sources */ = {isa = PBXBuildFile; fileRef = F5D8F66003389C830112CE8F /* window.c */; }; - 1AE3450812CB71BD00FD8C62 /* vorbisenc.h in Headers */ = {isa = PBXBuildFile; fileRef = F58520BA0191D12B01A802FE /* vorbisenc.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AE3450912CB71BD00FD8C62 /* vorbisfile.h in Headers */ = {isa = PBXBuildFile; fileRef = F58520BB0191D12B01A802FE /* vorbisfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AE3450A12CB71BE00FD8C62 /* codec.h in Headers */ = {isa = PBXBuildFile; fileRef = F58520B90191D12B01A802FE /* codec.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AE3452312CB72E300FD8C62 /* libogg_for_oolite.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AE3452212CB72E100FD8C62 /* libogg_for_oolite.a */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 1AE3452112CB72E100FD8C62 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1AE3451D12CB72E100FD8C62 /* Ogg.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 1ADE32A40975807900961AE2; - remoteInfo = LibOgg; - }; - 1AE3452412CB72E900FD8C62 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1AE3451D12CB72E100FD8C62 /* Ogg.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = 1ADE32A30975807900961AE2; - remoteInfo = LibOgg; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 1ADE327709757FBE00961AE2 /* libvorbis_for_oolite.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libvorbis_for_oolite.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1AE3450D12CB71E100FD8C62 /* oolite-targets.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "oolite-targets.xcconfig"; path = "../../../src/Cocoa/oolite-targets.xcconfig"; sourceTree = SOURCE_ROOT; }; - 1AE3451D12CB72E100FD8C62 /* Ogg.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = Ogg.xcodeproj; sourceTree = ""; }; - F58520B90191D12B01A802FE /* codec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = codec.h; sourceTree = ""; }; - F58520BA0191D12B01A802FE /* vorbisenc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = vorbisenc.h; sourceTree = ""; }; - F58520BB0191D12B01A802FE /* vorbisfile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = vorbisfile.h; sourceTree = ""; }; - F5D8F60A03389C830112CE8F /* analysis.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = analysis.c; sourceTree = ""; }; - F5D8F60B03389C830112CE8F /* backends.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = backends.h; sourceTree = ""; }; - F5D8F60C03389C830112CE8F /* barkmel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = barkmel.c; sourceTree = ""; }; - F5D8F60D03389C830112CE8F /* bitrate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = bitrate.c; sourceTree = ""; }; - F5D8F60E03389C830112CE8F /* bitrate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bitrate.h; sourceTree = ""; }; - F5D8F60F03389C830112CE8F /* block.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = block.c; sourceTree = ""; }; - F5D8F61603389C830112CE8F /* res_books_stereo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = res_books_stereo.h; sourceTree = ""; }; - F5D8F61903389C830112CE8F /* floor_books.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = floor_books.h; sourceTree = ""; }; - F5D8F62203389C830112CE8F /* res_books_uncoupled.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = res_books_uncoupled.h; sourceTree = ""; }; - F5D8F62303389C830112CE8F /* codebook.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = codebook.c; sourceTree = ""; }; - F5D8F62403389C830112CE8F /* codebook.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = codebook.h; sourceTree = ""; }; - F5D8F62503389C830112CE8F /* codec_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = codec_internal.h; sourceTree = ""; }; - F5D8F62603389C830112CE8F /* envelope.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = envelope.c; sourceTree = ""; }; - F5D8F62703389C830112CE8F /* envelope.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = envelope.h; sourceTree = ""; }; - F5D8F62803389C830112CE8F /* floor0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = floor0.c; sourceTree = ""; }; - F5D8F62903389C830112CE8F /* floor1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = floor1.c; sourceTree = ""; }; - F5D8F62A03389C830112CE8F /* highlevel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = highlevel.h; sourceTree = ""; }; - F5D8F62B03389C830112CE8F /* info.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = info.c; sourceTree = ""; }; - F5D8F62C03389C830112CE8F /* lookup.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = lookup.c; sourceTree = ""; }; - F5D8F62D03389C830112CE8F /* lookup.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lookup.h; sourceTree = ""; }; - F5D8F62E03389C830112CE8F /* lookup_data.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lookup_data.h; sourceTree = ""; }; - F5D8F63003389C830112CE8F /* lpc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = lpc.c; sourceTree = ""; }; - F5D8F63103389C830112CE8F /* lpc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lpc.h; sourceTree = ""; }; - F5D8F63203389C830112CE8F /* lsp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = lsp.c; sourceTree = ""; }; - F5D8F63303389C830112CE8F /* lsp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lsp.h; sourceTree = ""; }; - F5D8F63603389C830112CE8F /* mapping0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = mapping0.c; sourceTree = ""; }; - F5D8F63703389C830112CE8F /* masking.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = masking.h; sourceTree = ""; }; - F5D8F63803389C830112CE8F /* mdct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = mdct.c; sourceTree = ""; }; - F5D8F63903389C830112CE8F /* mdct.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = mdct.h; sourceTree = ""; }; - F5D8F63A03389C830112CE8F /* misc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = misc.c; sourceTree = ""; }; - F5D8F63B03389C830112CE8F /* misc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = misc.h; sourceTree = ""; }; - F5D8F63E03389C830112CE8F /* floor_all.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = floor_all.h; sourceTree = ""; }; - F5D8F64103389C830112CE8F /* psych_11.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = psych_11.h; sourceTree = ""; }; - F5D8F64203389C830112CE8F /* psych_16.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = psych_16.h; sourceTree = ""; }; - F5D8F64303389C830112CE8F /* psych_44.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = psych_44.h; sourceTree = ""; }; - F5D8F64403389C830112CE8F /* psych_8.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = psych_8.h; sourceTree = ""; }; - F5D8F64503389C830112CE8F /* residue_16.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = residue_16.h; sourceTree = ""; }; - F5D8F64603389C830112CE8F /* residue_44.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = residue_44.h; sourceTree = ""; }; - F5D8F64703389C830112CE8F /* residue_44u.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = residue_44u.h; sourceTree = ""; }; - F5D8F64803389C830112CE8F /* residue_8.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = residue_8.h; sourceTree = ""; }; - F5D8F64903389C830112CE8F /* setup_11.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = setup_11.h; sourceTree = ""; }; - F5D8F64A03389C830112CE8F /* setup_16.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = setup_16.h; sourceTree = ""; }; - F5D8F64B03389C830112CE8F /* setup_22.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = setup_22.h; sourceTree = ""; }; - F5D8F64C03389C830112CE8F /* setup_32.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = setup_32.h; sourceTree = ""; }; - F5D8F64D03389C830112CE8F /* setup_44.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = setup_44.h; sourceTree = ""; }; - F5D8F64E03389C830112CE8F /* setup_44u.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = setup_44u.h; sourceTree = ""; }; - F5D8F64F03389C830112CE8F /* setup_8.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = setup_8.h; sourceTree = ""; }; - F5D8F65003389C830112CE8F /* setup_X.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = setup_X.h; sourceTree = ""; }; - F5D8F65103389C830112CE8F /* os.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = os.h; sourceTree = ""; }; - F5D8F65203389C830112CE8F /* psy.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = psy.c; sourceTree = ""; }; - F5D8F65303389C830112CE8F /* psy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = psy.h; sourceTree = ""; }; - F5D8F65403389C830112CE8F /* psytune.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = psytune.c; sourceTree = ""; }; - F5D8F65503389C830112CE8F /* registry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = registry.c; sourceTree = ""; }; - F5D8F65603389C830112CE8F /* registry.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = registry.h; sourceTree = ""; }; - F5D8F65703389C830112CE8F /* res0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = res0.c; sourceTree = ""; }; - F5D8F65803389C830112CE8F /* scales.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = scales.h; sourceTree = ""; }; - F5D8F65903389C830112CE8F /* sharedbook.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = sharedbook.c; sourceTree = ""; }; - F5D8F65A03389C830112CE8F /* smallft.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = smallft.c; sourceTree = ""; }; - F5D8F65B03389C830112CE8F /* smallft.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = smallft.h; sourceTree = ""; }; - F5D8F65C03389C830112CE8F /* synthesis.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = synthesis.c; sourceTree = ""; }; - F5D8F65D03389C830112CE8F /* tone.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = tone.c; sourceTree = ""; }; - F5D8F65E03389C830112CE8F /* vorbisenc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = vorbisenc.c; sourceTree = ""; }; - F5D8F65F03389C830112CE8F /* vorbisfile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = vorbisfile.c; sourceTree = ""; }; - F5D8F66003389C830112CE8F /* window.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = window.c; sourceTree = ""; }; - F5D8F66103389C830112CE8F /* window.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = window.h; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 1ADE327509757FBE00961AE2 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 1AE3452312CB72E300FD8C62 /* libogg_for_oolite.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 034768DFFF38A50411DB9C8B /* Products */ = { - isa = PBXGroup; - children = ( - 1ADE327709757FBE00961AE2 /* libvorbis_for_oolite.a */, - ); - name = Products; - sourceTree = ""; - }; - 0867D691FE84028FC02AAC07 /* vorbis */ = { - isa = PBXGroup; - children = ( - 1AE3450D12CB71E100FD8C62 /* oolite-targets.xcconfig */, - F58520B70191D12B01A802FE /* vorbis */, - F5D8F60803389C830112CE8F /* Source */, - 034768DFFF38A50411DB9C8B /* Products */, - 1AE3451D12CB72E100FD8C62 /* Ogg.xcodeproj */, - ); - name = vorbis; - sourceTree = ""; - }; - 1AE3451E12CB72E100FD8C62 /* Products */ = { - isa = PBXGroup; - children = ( - 1AE3452212CB72E100FD8C62 /* libogg_for_oolite.a */, - ); - name = Products; - sourceTree = ""; - }; - F58520B70191D12B01A802FE /* vorbis */ = { - isa = PBXGroup; - children = ( - F58520B90191D12B01A802FE /* codec.h */, - F58520BA0191D12B01A802FE /* vorbisenc.h */, - F58520BB0191D12B01A802FE /* vorbisfile.h */, - ); - name = vorbis; - path = ../../libvorbis/include/vorbis; - sourceTree = SOURCE_ROOT; - }; - F5D8F60803389C830112CE8F /* Source */ = { - isa = PBXGroup; - children = ( - F5D8F60A03389C830112CE8F /* analysis.c */, - F5D8F60B03389C830112CE8F /* backends.h */, - F5D8F60C03389C830112CE8F /* barkmel.c */, - F5D8F60D03389C830112CE8F /* bitrate.c */, - F5D8F60E03389C830112CE8F /* bitrate.h */, - F5D8F60F03389C830112CE8F /* block.c */, - F5D8F61003389C830112CE8F /* books */, - F5D8F62303389C830112CE8F /* codebook.c */, - F5D8F62403389C830112CE8F /* codebook.h */, - F5D8F62503389C830112CE8F /* codec_internal.h */, - F5D8F62603389C830112CE8F /* envelope.c */, - F5D8F62703389C830112CE8F /* envelope.h */, - F5D8F62803389C830112CE8F /* floor0.c */, - F5D8F62903389C830112CE8F /* floor1.c */, - F5D8F62A03389C830112CE8F /* highlevel.h */, - F5D8F62B03389C830112CE8F /* info.c */, - F5D8F62C03389C830112CE8F /* lookup.c */, - F5D8F62D03389C830112CE8F /* lookup.h */, - F5D8F62E03389C830112CE8F /* lookup_data.h */, - F5D8F63003389C830112CE8F /* lpc.c */, - F5D8F63103389C830112CE8F /* lpc.h */, - F5D8F63203389C830112CE8F /* lsp.c */, - F5D8F63303389C830112CE8F /* lsp.h */, - F5D8F63603389C830112CE8F /* mapping0.c */, - F5D8F63703389C830112CE8F /* masking.h */, - F5D8F63803389C830112CE8F /* mdct.c */, - F5D8F63903389C830112CE8F /* mdct.h */, - F5D8F63A03389C830112CE8F /* misc.c */, - F5D8F63B03389C830112CE8F /* misc.h */, - F5D8F63C03389C830112CE8F /* modes */, - F5D8F65103389C830112CE8F /* os.h */, - F5D8F65203389C830112CE8F /* psy.c */, - F5D8F65303389C830112CE8F /* psy.h */, - F5D8F65403389C830112CE8F /* psytune.c */, - F5D8F65503389C830112CE8F /* registry.c */, - F5D8F65603389C830112CE8F /* registry.h */, - F5D8F65703389C830112CE8F /* res0.c */, - F5D8F65803389C830112CE8F /* scales.h */, - F5D8F65903389C830112CE8F /* sharedbook.c */, - F5D8F65A03389C830112CE8F /* smallft.c */, - F5D8F65B03389C830112CE8F /* smallft.h */, - F5D8F65C03389C830112CE8F /* synthesis.c */, - F5D8F65D03389C830112CE8F /* tone.c */, - F5D8F65E03389C830112CE8F /* vorbisenc.c */, - F5D8F65F03389C830112CE8F /* vorbisfile.c */, - F5D8F66003389C830112CE8F /* window.c */, - F5D8F66103389C830112CE8F /* window.h */, - ); - name = Source; - path = ../../libvorbis/lib; - sourceTree = ""; - }; - F5D8F61003389C830112CE8F /* books */ = { - isa = PBXGroup; - children = ( - F5D8F61203389C830112CE8F /* coupled */, - F5D8F61703389C830112CE8F /* floor */, - F5D8F61E03389C830112CE8F /* uncoupled */, - ); - path = books; - sourceTree = ""; - }; - F5D8F61203389C830112CE8F /* coupled */ = { - isa = PBXGroup; - children = ( - F5D8F61603389C830112CE8F /* res_books_stereo.h */, - ); - path = coupled; - sourceTree = ""; - }; - F5D8F61703389C830112CE8F /* floor */ = { - isa = PBXGroup; - children = ( - F5D8F61903389C830112CE8F /* floor_books.h */, - ); - path = floor; - sourceTree = ""; - }; - F5D8F61E03389C830112CE8F /* uncoupled */ = { - isa = PBXGroup; - children = ( - F5D8F62203389C830112CE8F /* res_books_uncoupled.h */, - ); - path = uncoupled; - sourceTree = ""; - }; - F5D8F63C03389C830112CE8F /* modes */ = { - isa = PBXGroup; - children = ( - F5D8F63E03389C830112CE8F /* floor_all.h */, - F5D8F64103389C830112CE8F /* psych_11.h */, - F5D8F64203389C830112CE8F /* psych_16.h */, - F5D8F64303389C830112CE8F /* psych_44.h */, - F5D8F64403389C830112CE8F /* psych_8.h */, - F5D8F64503389C830112CE8F /* residue_16.h */, - F5D8F64603389C830112CE8F /* residue_44.h */, - F5D8F64703389C830112CE8F /* residue_44u.h */, - F5D8F64803389C830112CE8F /* residue_8.h */, - F5D8F64903389C830112CE8F /* setup_11.h */, - F5D8F64A03389C830112CE8F /* setup_16.h */, - F5D8F64B03389C830112CE8F /* setup_22.h */, - F5D8F64C03389C830112CE8F /* setup_32.h */, - F5D8F64D03389C830112CE8F /* setup_44.h */, - F5D8F64E03389C830112CE8F /* setup_44u.h */, - F5D8F64F03389C830112CE8F /* setup_8.h */, - F5D8F65003389C830112CE8F /* setup_X.h */, - ); - path = modes; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 1ADE327309757FBE00961AE2 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1AE3450812CB71BD00FD8C62 /* vorbisenc.h in Headers */, - 1AE3450912CB71BD00FD8C62 /* vorbisfile.h in Headers */, - 1AE3450A12CB71BE00FD8C62 /* codec.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 1ADE327609757FBE00961AE2 /* LibVorbis */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1ADE328009757FEC00961AE2 /* Build configuration list for PBXNativeTarget "LibVorbis" */; - buildPhases = ( - 1ADE327309757FBE00961AE2 /* Headers */, - 1ADE327409757FBE00961AE2 /* Sources */, - 1ADE327509757FBE00961AE2 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 1AE3452512CB72E900FD8C62 /* PBXTargetDependency */, - ); - name = LibVorbis; - productName = LibVorbis; - productReference = 1ADE327709757FBE00961AE2 /* libvorbis_for_oolite.a */; - productType = "com.apple.product-type.library.static"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 0867D690FE84028FC02AAC07 /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 0700; - }; - buildConfigurationList = 730F23F3091827B200AB638C /* Build configuration list for PBXProject "Vorbis" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - English, - Japanese, - French, - German, - ); - mainGroup = 0867D691FE84028FC02AAC07 /* vorbis */; - productRefGroup = 034768DFFF38A50411DB9C8B /* Products */; - projectDirPath = ""; - projectReferences = ( - { - ProductGroup = 1AE3451E12CB72E100FD8C62 /* Products */; - ProjectRef = 1AE3451D12CB72E100FD8C62 /* Ogg.xcodeproj */; - }, - ); - projectRoot = ""; - targets = ( - 1ADE327609757FBE00961AE2 /* LibVorbis */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXReferenceProxy section */ - 1AE3452212CB72E100FD8C62 /* libogg_for_oolite.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libogg_for_oolite.a; - remoteRef = 1AE3452112CB72E100FD8C62 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; -/* End PBXReferenceProxy section */ - -/* Begin PBXSourcesBuildPhase section */ - 1ADE327409757FBE00961AE2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1ADE327809757FCF00961AE2 /* analysis.c in Sources */, - 1ADE327A09757FD200961AE2 /* bitrate.c in Sources */, - 1ADE327B09757FD500961AE2 /* block.c in Sources */, - 1ADE327C09757FD500961AE2 /* codebook.c in Sources */, - 1ADE32880975800000961AE2 /* envelope.c in Sources */, - 1ADE32890975800000961AE2 /* floor0.c in Sources */, - 1ADE328A0975800100961AE2 /* floor1.c in Sources */, - 1ADE328B0975800100961AE2 /* info.c in Sources */, - 1ADE328C0975800200961AE2 /* lookup.c in Sources */, - 1ADE328D0975800200961AE2 /* lpc.c in Sources */, - 1ADE328E0975800300961AE2 /* lsp.c in Sources */, - 1ADE328F0975800400961AE2 /* mapping0.c in Sources */, - 1ADE32900975800500961AE2 /* mdct.c in Sources */, - 1ADE32910975800700961AE2 /* psy.c in Sources */, - 1ADE32930975800800961AE2 /* registry.c in Sources */, - 1ADE32940975800900961AE2 /* res0.c in Sources */, - 1ADE32950975800A00961AE2 /* sharedbook.c in Sources */, - 1ADE32960975800A00961AE2 /* smallft.c in Sources */, - 1ADE32970975800B00961AE2 /* synthesis.c in Sources */, - 1ADE32990975800C00961AE2 /* vorbisenc.c in Sources */, - 1ADE329A0975800E00961AE2 /* vorbisfile.c in Sources */, - 1ADE329B0975800E00961AE2 /* window.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 1AE3452512CB72E900FD8C62 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = LibOgg; - targetProxy = 1AE3452412CB72E900FD8C62 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 1ADE328209757FEC00961AE2 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - GCC_AUTO_VECTORIZATION = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; - HEADER_SEARCH_PATHS = ( - ../../libvorbis/include, - "$(SYMROOT)/$(CONFIGURATION)/include", - ); - INSTALL_PATH = /usr/local/lib; - LLVM_LTO = YES; - PRODUCT_NAME = vorbis_for_oolite; - PUBLIC_HEADERS_FOLDER_PATH = include/vorbis; - SYMROOT = ../../../build; - USER_HEADER_SEARCH_PATHS = ../../libvorbis/lib; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 1AE3458412CB7A9B00FD8C62 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1AE3450D12CB71E100FD8C62 /* oolite-targets.xcconfig */; - buildSettings = { - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = __MACOSX__; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - ONLY_ACTIVE_ARCH = YES; - }; - name = Debug; - }; - 1AE3458512CB7A9B00FD8C62 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - GCC_AUTO_VECTORIZATION = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; - HEADER_SEARCH_PATHS = ( - ../../libvorbis/include, - "$(SYMROOT)/$(CONFIGURATION)/include", - ); - INSTALL_PATH = /usr/local/lib; - LLVM_LTO = YES; - PRODUCT_NAME = vorbis_for_oolite; - PUBLIC_HEADERS_FOLDER_PATH = include/vorbis; - SYMROOT = ../../../build; - USER_HEADER_SEARCH_PATHS = ../../libvorbis/lib; - ZERO_LINK = NO; - }; - name = Debug; - }; - 1AE3458612CB7A9E00FD8C62 /* TestRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1AE3450D12CB71E100FD8C62 /* oolite-targets.xcconfig */; - buildSettings = { - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = __MACOSX__; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - }; - name = TestRelease; - }; - 1AE3458712CB7A9E00FD8C62 /* TestRelease */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - GCC_AUTO_VECTORIZATION = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; - HEADER_SEARCH_PATHS = ( - ../../libvorbis/include, - "$(SYMROOT)/$(CONFIGURATION)/include", - ); - INSTALL_PATH = /usr/local/lib; - LLVM_LTO = YES; - PRODUCT_NAME = vorbis_for_oolite; - PUBLIC_HEADERS_FOLDER_PATH = include/vorbis; - SYMROOT = ../../../build; - USER_HEADER_SEARCH_PATHS = ../../libvorbis/lib; - ZERO_LINK = NO; - }; - name = TestRelease; - }; - 730F23F5091827B200AB638C /* Deployment */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1AE3450D12CB71E100FD8C62 /* oolite-targets.xcconfig */; - buildSettings = { - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = __MACOSX__; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - }; - name = Deployment; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 1ADE328009757FEC00961AE2 /* Build configuration list for PBXNativeTarget "LibVorbis" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1ADE328209757FEC00961AE2 /* Deployment */, - 1AE3458512CB7A9B00FD8C62 /* Debug */, - 1AE3458712CB7A9E00FD8C62 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 730F23F3091827B200AB638C /* Build configuration list for PBXProject "Vorbis" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 730F23F5091827B200AB638C /* Deployment */, - 1AE3458412CB7A9B00FD8C62 /* Debug */, - 1AE3458612CB7A9E00FD8C62 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; -/* End XCConfigurationList section */ - }; - rootObject = 0867D690FE84028FC02AAC07 /* Project object */; -} diff --git a/deps/Cocoa-deps/libjs/NativeUniversal.cpp b/deps/Cocoa-deps/libjs/NativeUniversal.cpp deleted file mode 100644 index e10952dad..000000000 --- a/deps/Cocoa-deps/libjs/NativeUniversal.cpp +++ /dev/null @@ -1,5 +0,0 @@ -#if __i386__ -#include "../../mozilla/js/src/nanojit/Nativei386.cpp" -#elif __x86_64__ -#include "../../mozilla/js/src/nanojit/NativeX64.cpp" -#endif diff --git a/deps/Cocoa-deps/libjs/_pr_bld.h b/deps/Cocoa-deps/libjs/_pr_bld.h deleted file mode 100644 index 2267c41fa..000000000 --- a/deps/Cocoa-deps/libjs/_pr_bld.h +++ /dev/null @@ -1,3 +0,0 @@ -#define _BUILD_STRING __DATE__ -#define _BUILD_TIME 0 -#define _PRODUCTION "libnspr4_for_oolite.a" diff --git a/deps/Cocoa-deps/libjs/js-config.h b/deps/Cocoa-deps/libjs/js-config.h deleted file mode 100644 index 22e54c268..000000000 --- a/deps/Cocoa-deps/libjs/js-config.h +++ /dev/null @@ -1,52 +0,0 @@ -#ifndef js_config_h___ -#define js_config_h___ - - -#include "js-oolite-prefix.h" - - -#define XP_UNIX -#define XP_MACOSX - -#define STATIC_JS_API - - - -#ifdef DEBUG -// Debug flags. - -// Support aggressive garbage collection (in Oolite, use the js-gc-zeal default, ranging from 0 to 2). -#define JS_GC_ZEAL 1 - -// Thread safety required for API compatibility testing, not actually used. -// Defined in js-oolite-prefix.h because jslock uses it before including js-config.h. -// #define JS_THREADSAFE 1 -#else -// Non-debug flags. -#define JS_NO_JSVAL_JSID_STRUCT_TYPES 1 -#endif - - - -// Don't implement CTypes (foreign function interface for XUL chrome). -#undef JS_HAS_CTYPES - -#define JS_HAVE_STDINT_H 1 -#undef JS_SYS_TYPES_H_DEFINES_EXACT_SIZE_TYPES -#undef JS_HAVE___INTN - - - -#define JS_ALIGN_OF_POINTER JS_BYTES_PER_WORD - - -#define HAVE_VA_LIST_AS_ARRAY 1 -#define NSPR_LOCK 1 - - -#ifndef NDEBUG -#define MOZ_TRACE_JSCALLS 1 -#endif - - -#endif // js_config_h___ diff --git a/deps/Cocoa-deps/libjs/js-oolite-prefix.h b/deps/Cocoa-deps/libjs/js-oolite-prefix.h deleted file mode 100644 index fe8225278..000000000 --- a/deps/Cocoa-deps/libjs/js-oolite-prefix.h +++ /dev/null @@ -1,74 +0,0 @@ -#ifndef INCLUDED_JS_OOLITE_PREFIX_h -#define INCLUDED_JS_OOLITE_PREFIX_h - -/* - A bunch of stuff is defined in a prefix header because there's no common - header file. Some files look at macros before including js-config.h, some - don't include it at all. - - Some of it also has to be seen by client (Oolite) code, so this is - included from js-config.h as well. -*/ - -#if __cplusplus -#define __STDC_LIMIT_MACROS 1 -#endif - -#ifdef DEBUG -// Thread safety required for API compatibility testing, not actually used. -#define JS_THREADSAFE 1 -#endif - -// TraceMonkey, JaegerMonkey, and YARR (regexp) JIT, aka the Go Faster Switches. -#define JS_TRACER 1 -#define JS_METHODJIT 1 -#define ENABLE_YARR_JIT 1 - - -#if JS_TRACER || JS_METHODJIT -#define FEATURE_NANOJIT 1 -#endif - -#if JS_METHODJIT -#define JS_MONOIC 1 -#define JS_POLYIC 1 -#endif - - -#if __i386__ -#define JS_BYTES_PER_WORD 4 -#define JS_BITS_PER_WORD_LOG2 5 -#define AVMPLUS_IA32 1 -#define JS_CPU_X86 1 -#define JS_NUNBOX32 1 -#define WTF_CPU_X86 1 -#elif __x86_64__ -#define JS_BYTES_PER_WORD 8 -#define JS_BITS_PER_WORD_LOG2 6 -#define AVMPLUS_64BIT 1 -#define AVMPLUS_AMD64 1 -#define JS_CPU_X64 1 -#define JS_PUNBOX64 1 -#define WTF_CPU_X86_64 1 -#else -#error Unknown platform. -#endif - - -#define AVMPLUS_UNIX 1 -#define AVMPLUS_MAC 1 - - -#if !AVMPLUS_64BIT -/* - Nanojit on 32-bit Mac platforms requires MakeDataExecutable(), which is - declared in CoreServices, but if we include that we get AssertMacros.h - which includes a "check()" macro that breaks the build. -*/ -#if __cplusplus -extern "C" void MakeDataExecutable(void *baseAddress, unsigned long length); -#endif -#endif - - -#endif // INCLUDED_JS_OOLITE_PREFIX_h diff --git a/deps/Cocoa-deps/libjs/js-oolite-shim.cpp b/deps/Cocoa-deps/libjs/js-oolite-shim.cpp deleted file mode 100644 index 9bd510856..000000000 --- a/deps/Cocoa-deps/libjs/js-oolite-shim.cpp +++ /dev/null @@ -1,12 +0,0 @@ -#include "wtf/Assertions.h" - -#include -extern "C" void OOLogWithPrefix(CFStringRef messageClass, const char *function, const char *file, unsigned long line, CFStringRef prefix, CFStringRef format, ...); -extern "C" CFStringRef OOLogAbbreviatedFileName(const char *inName); - - -void WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion) -{ - OOLogWithPrefix(CFSTR("javascript.wtf.assert"), function, file, line, CFSTR(""), CFSTR("ASSERTION FAILURE at %@:%d: %s"), OOLogAbbreviatedFileName(file), line, assertion); - __builtin_trap(); -} diff --git a/deps/Cocoa-deps/libjs/jsapitests-oolite-shim.m b/deps/Cocoa-deps/libjs/jsapitests-oolite-shim.m deleted file mode 100644 index c85bc952c..000000000 --- a/deps/Cocoa-deps/libjs/jsapitests-oolite-shim.m +++ /dev/null @@ -1,23 +0,0 @@ -#import - - -void OOLogWithPrefix(NSString *messageClass, const char *function, const char *file, unsigned long line, NSString *prefix, NSString *format, ...) -{ - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - - va_list args; - va_start(args, format); - NSString *message = [[NSString alloc] initWithFormat:format arguments:args]; - va_end(args); - - printf("%s\n", [message UTF8String]); - - [message release]; - [pool drain]; -} - - -NSString *OOLogAbbreviatedFileName(const char *inName) -{ - return @""; -} diff --git a/deps/Cocoa-deps/libjs/jsautocfg.h b/deps/Cocoa-deps/libjs/jsautocfg.h deleted file mode 100644 index 6e2080f41..000000000 --- a/deps/Cocoa-deps/libjs/jsautocfg.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef js_cpucfg___ -#define js_cpucfg___ - -/* MANUALLY GENERATED - DO EDIT. IF YOU ACTUALLY NEED TO. */ - -#if __LITTLE_ENDIAN__ -#define IS_LITTLE_ENDIAN 1 -#undef IS_BIG_ENDIAN -#elif __BIG_ENDIAN__ -#define IS_BIG_ENDIAN 1 -#undef IS_LITTLE_ENDIAN -#else -#error Unknown platform endianness. -#undef IS_BIG_ENDIAN -#undef IS_LITTLE_ENDIAN -#endif - -#define JS_STACK_GROWTH_DIRECTION (-1) - -#endif // js_cpucfg___ - diff --git a/deps/Cocoa-deps/libjs/jsutil.cpp b/deps/Cocoa-deps/libjs/jsutil.cpp deleted file mode 100644 index 90d049472..000000000 --- a/deps/Cocoa-deps/libjs/jsutil.cpp +++ /dev/null @@ -1,412 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- - * - * ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is Mozilla Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is - * Netscape Communications Corporation. - * Portions created by the Initial Developer are Copyright (C) 1998 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * IBM Corp. - * - * Alternatively, the contents of this file may be used under the terms of - * either of the GNU General Public License Version 2 or later (the "GPL"), - * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), - * in which case the provisions of the GPL or the LGPL are applicable instead - * of those above. If you wish to allow use of your version of this file only - * under the terms of either the GPL or the LGPL, and not to allow others to - * use your version of this file under the terms of the MPL, indicate your - * decision by deleting the provisions above and replace them with the notice - * and other provisions required by the GPL or the LGPL. If you do not delete - * the provisions above, a recipient may use your version of this file under - * the terms of any one of the MPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ - -/* - * PR assertion checker. - */ -#include -#include -#include "jstypes.h" -#include "jsstdint.h" -#include "jsutil.h" - -#ifdef WIN32 -# include "jswin.h" -#else -# include -#endif - -/* BEGIN OOLITE */ - -// Nasty hack for Oolite-Mac: integrate assertions into log. -// Would be messier on other platforms because of lack of CoreFoundation. -// There are two more modified chunks below, again marked with BEGIN OOLITE. - -#include "jsversion.h" -#if JS_VERSION != 185 -#error Libjs version has changed; jsutil.cpp must be updated or replaced. Headers should be checked, too. -#endif - -#include -extern "C" void OOLogWithPrefix(CFStringRef messageClass, const char *function, const char *file, unsigned long line, CFStringRef prefix, CFStringRef format, ...); -extern "C" CFStringRef OOLogAbbreviatedFileName(const char *inName); - -/* END OOLITE */ - -using namespace js; - -/* - * Checks the assumption that JS_FUNC_TO_DATA_PTR and JS_DATA_TO_FUNC_PTR - * macros uses to implement casts between function and data pointers. - */ -JS_STATIC_ASSERT(sizeof(void *) == sizeof(void (*)())); - -JS_PUBLIC_API(void) JS_Assert(const char *s, const char *file, JSIntn ln) -{ -/* BEGIN OOLITE */ -#if 1 - OOLogWithPrefix(CFSTR("javascript.assert"), NULL, file, ln, CFSTR(""), CFSTR("ASSERTION FAILURE at %@:%d: %s"), OOLogAbbreviatedFileName(file), ln, s); - __builtin_trap(); -#else - fprintf(stderr, "Assertion failure: %s, at %s:%d\n", s, file, ln); - fflush(stderr); - -#if defined(WIN32) - /* - * We used to call DebugBreak() on Windows, but amazingly, it causes - * the MSVS 2010 debugger not to be able to recover a call stack. - */ - *((int *) NULL) = 0; - exit(3); -#elif defined(__APPLE__) - /* - * On Mac OS X, Breakpad ignores signals. Only real Mach exceptions are - * trapped. - */ - *((int *) NULL) = 0; /* To continue from here in GDB: "return" then "continue". */ - raise(SIGABRT); /* In case above statement gets nixed by the optimizer. */ -#else - raise(SIGABRT); /* To continue from here in GDB: "signal 0". */ -#endif - -#endif - /* END OOLITE */ -} - -#ifdef JS_BASIC_STATS - -#include -#include -#include "jscompat.h" -#include "jsbit.h" - -/* - * Histogram bins count occurrences of values <= the bin label, as follows: - * - * linear: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 or more - * 2**x: 0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512 or more - * 10**x: 0, 1, 10, 100, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9 or more - * - * We wish to count occurrences of 0 and 1 values separately, always. - */ -static uint32 -BinToVal(uintN logscale, uintN bin) -{ - JS_ASSERT(bin <= 10); - if (bin <= 1 || logscale == 0) - return bin; - --bin; - if (logscale == 2) - return JS_BIT(bin); - JS_ASSERT(logscale == 10); - return (uint32) pow(10.0, (double) bin); -} - -static uintN -ValToBin(uintN logscale, uint32 val) -{ - uintN bin; - - if (val <= 1) - return val; - bin = (logscale == 10) - ? (uintN) ceil(log10((double) val)) - : (logscale == 2) - ? (uintN) JS_CeilingLog2(val) - : val; - return JS_MIN(bin, 10); -} - -void -JS_BasicStatsAccum(JSBasicStats *bs, uint32 val) -{ - uintN oldscale, newscale, bin; - double mean; - - ++bs->num; - if (bs->max < val) - bs->max = val; - bs->sum += val; - bs->sqsum += (double)val * val; - - oldscale = bs->logscale; - if (oldscale != 10) { - mean = bs->sum / bs->num; - if (bs->max > 16 && mean > 8) { - newscale = (bs->max > 1e6 && mean > 1000) ? 10 : 2; - if (newscale != oldscale) { - uint32 newhist[11], newbin; - - PodArrayZero(newhist); - for (bin = 0; bin <= 10; bin++) { - newbin = ValToBin(newscale, BinToVal(oldscale, bin)); - newhist[newbin] += bs->hist[bin]; - } - memcpy(bs->hist, newhist, sizeof bs->hist); - bs->logscale = newscale; - } - } - } - - bin = ValToBin(bs->logscale, val); - ++bs->hist[bin]; -} - -double -JS_MeanAndStdDev(uint32 num, double sum, double sqsum, double *sigma) -{ - double var; - - if (num == 0 || sum == 0) { - *sigma = 0; - return 0; - } - - var = num * sqsum - sum * sum; - if (var < 0 || num == 1) - var = 0; - else - var /= (double)num * (num - 1); - - /* Windows says sqrt(0.0) is "-1.#J" (?!) so we must test. */ - *sigma = (var != 0) ? sqrt(var) : 0; - return sum / num; -} - -void -JS_DumpBasicStats(JSBasicStats *bs, const char *title, FILE *fp) -{ - double mean, sigma; - - mean = JS_MeanAndStdDevBS(bs, &sigma); - fprintf(fp, "\nmean %s %g, std. deviation %g, max %lu\n", - title, mean, sigma, (unsigned long) bs->max); - JS_DumpHistogram(bs, fp); -} - -void -JS_DumpHistogram(JSBasicStats *bs, FILE *fp) -{ - uintN bin; - uint32 cnt, max; - double sum, mean; - - for (bin = 0, max = 0, sum = 0; bin <= 10; bin++) { - cnt = bs->hist[bin]; - if (max < cnt) - max = cnt; - sum += cnt; - } - mean = sum / cnt; - for (bin = 0; bin <= 10; bin++) { - uintN val = BinToVal(bs->logscale, bin); - uintN end = (bin == 10) ? 0 : BinToVal(bs->logscale, bin + 1); - cnt = bs->hist[bin]; - if (val + 1 == end) - fprintf(fp, " [%6u]", val); - else if (end != 0) - fprintf(fp, "[%6u, %6u]", val, end - 1); - else - fprintf(fp, "[%6u, +inf]", val); - fprintf(fp, ": %8u ", cnt); - if (cnt != 0) { - if (max > 1e6 && mean > 1e3) - cnt = (uint32) ceil(log10((double) cnt)); - else if (max > 16 && mean > 8) - cnt = JS_CeilingLog2(cnt); - for (uintN i = 0; i < cnt; i++) - putc('*', fp); - } - putc('\n', fp); - } -} - -#endif /* JS_BASIC_STATS */ - -#if defined(DEBUG_notme) && defined(XP_UNIX) - -#define __USE_GNU 1 -#include -#include -#include "jshash.h" -#include "jsprf.h" - -JSCallsite js_calltree_root = {0, NULL, NULL, 0, NULL, NULL, NULL, NULL}; - -static JSCallsite * -CallTree(void **bp) -{ - void **bpup, **bpdown, *pc; - JSCallsite *parent, *site, **csp; - Dl_info info; - int ok, offset; - const char *symbol; - char *method; - - /* Reverse the stack frame list to avoid recursion. */ - bpup = NULL; - for (;;) { - bpdown = (void**) bp[0]; - bp[0] = (void*) bpup; - if ((void**) bpdown[0] < bpdown) - break; - bpup = bp; - bp = bpdown; - } - - /* Reverse the stack again, finding and building a path in the tree. */ - parent = &js_calltree_root; - do { - bpup = (void**) bp[0]; - bp[0] = (void*) bpdown; - pc = bp[1]; - - csp = &parent->kids; - while ((site = *csp) != NULL) { - if (site->pc == (uint32)pc) { - /* Put the most recently used site at the front of siblings. */ - *csp = site->siblings; - site->siblings = parent->kids; - parent->kids = site; - - /* Site already built -- go up the stack. */ - goto upward; - } - csp = &site->siblings; - } - - /* Check for recursion: see if pc is on our ancestor line. */ - for (site = parent; site; site = site->parent) { - if (site->pc == (uint32)pc) - goto upward; - } - - /* - * Not in tree at all: let's find our symbolic callsite info. - * XXX static syms are masked by nearest lower global - */ - info.dli_fname = info.dli_sname = NULL; - ok = dladdr(pc, &info); - if (ok < 0) { - fprintf(stderr, "dladdr failed!\n"); - return NULL; - } - -/* XXXbe sub 0x08040000? or something, see dbaron bug with tenthumbs comment */ - symbol = info.dli_sname; - offset = (char*)pc - (char*)info.dli_fbase; - method = symbol - ? strdup(symbol) - : JS_smprintf("%s+%X", - info.dli_fname ? info.dli_fname : "main", - offset); - if (!method) - return NULL; - - /* Create a new callsite record. */ - site = (JSCallsite *) js_malloc(sizeof(JSCallsite)); - if (!site) - return NULL; - - /* Insert the new site into the tree. */ - site->pc = (uint32)pc; - site->name = method; - site->library = info.dli_fname; - site->offset = offset; - site->parent = parent; - site->siblings = parent->kids; - parent->kids = site; - site->kids = NULL; - - upward: - parent = site; - bpdown = bp; - bp = bpup; - } while (bp); - - return site; -} - -JS_FRIEND_API(JSCallsite *) -JS_Backtrace(int skip) -{ - void **bp, **bpdown; - - /* Stack walking code adapted from Kipp's "leaky". */ -#if defined(__i386) - __asm__( "movl %%ebp, %0" : "=g"(bp)); -#elif defined(__x86_64__) - __asm__( "movq %%rbp, %0" : "=g"(bp)); -#else - /* - * It would be nice if this worked uniformly, but at least on i386 and - * x86_64, it stopped working with gcc 4.1, because it points to the - * end of the saved registers instead of the start. - */ - bp = (void**) __builtin_frame_address(0); -#endif - while (--skip >= 0) { - bpdown = (void**) *bp++; - if (bpdown < bp) - break; - bp = bpdown; - } - - return CallTree(bp); -} - -JS_FRIEND_API(void) -JS_DumpBacktrace(JSCallsite *trace) -{ - while (trace) { -/* BEGIN OOLITE */ -#if 1 - OOLogWithPrefix(CFSTR("javascript.backtrace", NULL, NULL, 0, CFSTR(""), CFSTR("%s [%s +0x%X]\n"), trace->name, trace->library, - trace->offset); -#else - fprintf(stdout, "%s [%s +0x%X]\n", trace->name, trace->library, - trace->offset); -#endif -/* END OOLITE */ - trace = trace->parent; - } -} - -#endif /* defined(DEBUG_notme) && defined(XP_UNIX) */ diff --git a/deps/Cocoa-deps/libjs/libjs.xcodeproj/project.pbxproj b/deps/Cocoa-deps/libjs/libjs.xcodeproj/project.pbxproj deleted file mode 100644 index cdafc2d7a..000000000 --- a/deps/Cocoa-deps/libjs/libjs.xcodeproj/project.pbxproj +++ /dev/null @@ -1,2463 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 1A06F08212CA563500FB681A /* jsopcode.tbl in Headers */ = {isa = PBXBuildFile; fileRef = 1A06F07D12CA561C00FB681A /* jsopcode.tbl */; settings = {ATTRIBUTES = (Public, ); }; }; - 1A06F08712CA564A00FB681A /* jsproto.tbl in Headers */ = {isa = PBXBuildFile; fileRef = 1A06F07E12CA561C00FB681A /* jsproto.tbl */; settings = {ATTRIBUTES = (Public, ); }; }; - 1A06F0D312CA59CF00FB681A /* jsnum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F0D212CA59CF00FB681A /* jsnum.cpp */; }; - 1A06F0D412CA59DC00FB681A /* jspropertytree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F0CE12CA59A400FB681A /* jspropertytree.cpp */; }; - 1A06F0D512CA59DD00FB681A /* jsparse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F0D012CA59B300FB681A /* jsparse.cpp */; }; - 1A06F0D912CA5A1900FB681A /* jsdhash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F0D812CA5A1900FB681A /* jsdhash.cpp */; }; - 1A06F0DD12CA5A4F00FB681A /* jsbool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F0DC12CA5A4F00FB681A /* jsbool.cpp */; }; - 1A06F0E712CA5AC800FB681A /* jsregexp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F0E612CA5AC800FB681A /* jsregexp.cpp */; }; - 1A06F0F012CA5B3400FB681A /* jsinvoke.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F0EF12CA5B3400FB681A /* jsinvoke.cpp */; }; - 1A06F0F712CA5BC200FB681A /* jslog2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F0F612CA5BC200FB681A /* jslog2.cpp */; }; - 1A06F0FC12CA5C0E00FB681A /* jstypedarray.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F0FB12CA5C0E00FB681A /* jstypedarray.cpp */; }; - 1A06F10212CA5C2700FB681A /* jsemit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F10112CA5C2700FB681A /* jsemit.cpp */; }; - 1A06F11E12CA5CAE00FB681A /* jsdtoa.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F11D12CA5CAE00FB681A /* jsdtoa.cpp */; }; - 1A06F12212CA601E00FB681A /* jsexn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F12112CA601E00FB681A /* jsexn.cpp */; }; - 1A06F13912CA62C300FB681A /* jsgcstats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F13812CA62C300FB681A /* jsgcstats.cpp */; }; - 1A06F13B12CA62DD00FB681A /* jsnativestack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F13A12CA62DD00FB681A /* jsnativestack.cpp */; }; - 1A06F14612CA63C200FB681A /* jscompartment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F14512CA63C200FB681A /* jscompartment.cpp */; }; - 1A06F14A12CA63E700FB681A /* jsmath.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F14912CA63E700FB681A /* jsmath.cpp */; }; - 1A06F14E12CA643600FB681A /* jsreflect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F14D12CA643600FB681A /* jsreflect.cpp */; }; - 1A06F15212CA646E00FB681A /* jsprf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F15112CA646E00FB681A /* jsprf.cpp */; }; - 1A06F15612CA64AB00FB681A /* jswrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F15512CA64AB00FB681A /* jswrapper.cpp */; }; - 1A06F15A12CA64D000FB681A /* prmjtime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F15912CA64D000FB681A /* prmjtime.cpp */; }; - 1A06F15E12CA64EF00FB681A /* jspropertycache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F15D12CA64EF00FB681A /* jspropertycache.cpp */; }; - 1A06F16212CA651100FB681A /* jsgcchunk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F16112CA651100FB681A /* jsgcchunk.cpp */; }; - 1A06F16A12CA656F00FB681A /* RegexJIT.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A06F16912CA656F00FB681A /* RegexJIT.h */; }; - 1A06F18212CA693B00FB681A /* pcre_compile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F18112CA693B00FB681A /* pcre_compile.cpp */; }; - 1A06F18412CA693F00FB681A /* pcre_exec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F18312CA693F00FB681A /* pcre_exec.cpp */; }; - 1A06F18E12CA697100FB681A /* js-oolite-prefix.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A06F18D12CA697100FB681A /* js-oolite-prefix.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1A06F19512CA6A4C00FB681A /* pcre_xclass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F19412CA6A4C00FB681A /* pcre_xclass.cpp */; }; - 1A06F19912CA6A5A00FB681A /* pcre_tables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F19812CA6A5A00FB681A /* pcre_tables.cpp */; }; - 1A06F19F12CA6A7400FB681A /* pcre_ucp_searchfuncs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F19E12CA6A7400FB681A /* pcre_ucp_searchfuncs.cpp */; }; - 1A06F1B812CA6B8600FB681A /* conversions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F1B712CA6B8600FB681A /* conversions.cc */; }; - 1A06F1BC12CA6B9C00FB681A /* utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F1BB12CA6B9C00FB681A /* utils.cc */; }; - 1A06F1C012CA6BAB00FB681A /* v8-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F1BF12CA6BAB00FB681A /* v8-dtoa.cc */; }; - 1A06F1C612CA6BBC00FB681A /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F1C512CA6BBC00FB681A /* fast-dtoa.cc */; }; - 1A06F1CA12CA6BD100FB681A /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F1C912CA6BD100FB681A /* diy-fp.cc */; }; - 1A06F1CC12CA6BDB00FB681A /* platform.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F1CB12CA6BDB00FB681A /* platform.cc */; }; - 1A06F1D212CA6C1800FB681A /* checks.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F1D112CA6C1800FB681A /* checks.cc */; }; - 1A54105F14B882C900B8A4BE /* jslock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7765F12CA359A001478BB /* jslock.cpp */; }; - 1A54106914B883F700B8A4BE /* Compiler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA231D12CBF6A300EC0F43 /* Compiler.cpp */; }; - 1A54106A14B883F900B8A4BE /* FastArithmetic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA231F12CBF6A300EC0F43 /* FastArithmetic.cpp */; }; - 1A54106B14B883FE00B8A4BE /* FastOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA232012CBF6A300EC0F43 /* FastOps.cpp */; }; - 1A54106C14B8840200B8A4BE /* FrameState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA232312CBF6A300EC0F43 /* FrameState.cpp */; }; - 1A54106D14B8840500B8A4BE /* ImmutableSync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA232512CBF6A300EC0F43 /* ImmutableSync.cpp */; }; - 1A54106E14B8840B00B8A4BE /* InvokeHelpers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA232812CBF6A300EC0F43 /* InvokeHelpers.cpp */; }; - 1A54106F14B8840F00B8A4BE /* MethodJIT.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA232C12CBF6A300EC0F43 /* MethodJIT.cpp */; }; - 1A54107014B8841200B8A4BE /* MonoIC.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA232E12CBF6A300EC0F43 /* MonoIC.cpp */; }; - 1A54107114B8841600B8A4BE /* PolyIC.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA233112CBF6A300EC0F43 /* PolyIC.cpp */; }; - 1A54107214B8841B00B8A4BE /* StubCalls.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA233812CBF6A300EC0F43 /* StubCalls.cpp */; }; - 1A54107314B8842200B8A4BE /* StubCompiler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA233A12CBF6A300EC0F43 /* StubCompiler.cpp */; }; - 1A54107414B8842400B8A4BE /* TrampolineCompiler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA233C12CBF6A300EC0F43 /* TrampolineCompiler.cpp */; }; - 1A63DE9112CA9C5C00508CDB /* jsclone.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A63DE9012CA9C5C00508CDB /* jsclone.cpp */; }; - 1A69736012F44D2A000CC708 /* jsprobes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA1FBC12CB97B500EC0F43 /* jsprobes.cpp */; }; - 1AB25AA712CA1B6E00C67F42 /* jsapi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25AA612CA1B6E00C67F42 /* jsapi.cpp */; }; - 1AB7761512CA2F85001478BB /* jsarray.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7761412CA2F85001478BB /* jsarray.cpp */; }; - 1AB7762512CA3182001478BB /* jsutil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7762412CA3182001478BB /* jsutil.cpp */; }; - 1AB7762E12CA33C9001478BB /* jsfun.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7762D12CA33C9001478BB /* jsfun.cpp */; }; - 1AB7763D12CA3415001478BB /* jsscript.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7763C12CA3415001478BB /* jsscript.cpp */; }; - 1AB7764212CA3437001478BB /* jsopcode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7764112CA3437001478BB /* jsopcode.cpp */; }; - 1AB7764A12CA34B6001478BB /* jsdbgapi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7764912CA34B6001478BB /* jsdbgapi.cpp */; }; - 1AB7764F12CA34D7001478BB /* jscntxt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7764E12CA34D7001478BB /* jscntxt.cpp */; }; - 1AB7765512CA3539001478BB /* jsgc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7765412CA3539001478BB /* jsgc.cpp */; }; - 1AB7765912CA3564001478BB /* jsxdrapi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7765812CA3564001478BB /* jsxdrapi.cpp */; }; - 1AB7765C12CA3576001478BB /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7765B12CA3576001478BB /* json.cpp */; }; - 1AB7766612CA35CA001478BB /* jsproxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7766512CA35CA001478BB /* jsproxy.cpp */; }; - 1AB7766A12CA3601001478BB /* jsobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7766912CA3601001478BB /* jsobj.cpp */; }; - 1AB7766C12CA3606001478BB /* jsinterp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7766B12CA3606001478BB /* jsinterp.cpp */; }; - 1AB7767912CA36FB001478BB /* jsiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7767812CA36FB001478BB /* jsiter.cpp */; }; - 1AB7768012CA3737001478BB /* jsxml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7767F12CA3737001478BB /* jsxml.cpp */; }; - 1AB7768212CA3743001478BB /* jsstr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7768112CA3743001478BB /* jsstr.cpp */; }; - 1AB7768712CA37C9001478BB /* jsatom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7768612CA37C9001478BB /* jsatom.cpp */; }; - 1AB7768912CA37CF001478BB /* jsdate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7768812CA37CF001478BB /* jsdate.cpp */; }; - 1AB7781812CA51B9001478BB /* jsscope.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7781712CA51B9001478BB /* jsscope.cpp */; }; - 1AB7781C12CA51CE001478BB /* jsarena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7781B12CA51CE001478BB /* jsarena.cpp */; }; - 1AB7781E12CA51E6001478BB /* jshash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7781D12CA51E6001478BB /* jshash.cpp */; }; - 1AB7782212CA5220001478BB /* jsscan.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7782112CA5220001478BB /* jsscan.cpp */; }; - 1AB7783212CA5306001478BB /* jsanalyze.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772212CA4939001478BB /* jsanalyze.h */; }; - 1AB7783312CA5306001478BB /* jsapi.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772312CA4939001478BB /* jsapi.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7783412CA5306001478BB /* jsarena.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772412CA4939001478BB /* jsarena.h */; }; - 1AB7783512CA5306001478BB /* jsarray.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772512CA4939001478BB /* jsarray.h */; }; - 1AB7783612CA5306001478BB /* jsatom.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772612CA4939001478BB /* jsatom.h */; }; - 1AB7783712CA5306001478BB /* jsatominlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772712CA4939001478BB /* jsatominlines.h */; }; - 1AB7783812CA5306001478BB /* jsbit.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772812CA4939001478BB /* jsbit.h */; }; - 1AB7783912CA5306001478BB /* jsbool.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772912CA4939001478BB /* jsbool.h */; }; - 1AB7783A12CA5306001478BB /* jsbuiltins.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772A12CA4939001478BB /* jsbuiltins.h */; }; - 1AB7783B12CA5306001478BB /* jscell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772B12CA4939001478BB /* jscell.h */; }; - 1AB7783C12CA5306001478BB /* jsclist.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772C12CA4939001478BB /* jsclist.h */; }; - 1AB7783D12CA5306001478BB /* jsclone.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772D12CA493A001478BB /* jsclone.h */; }; - 1AB7783E12CA5306001478BB /* jscntxt.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772E12CA493A001478BB /* jscntxt.h */; }; - 1AB7783F12CA5306001478BB /* jscntxtinlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7772F12CA493A001478BB /* jscntxtinlines.h */; }; - 1AB7784012CA5306001478BB /* jscompartment.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773012CA493A001478BB /* jscompartment.h */; }; - 1AB7784112CA5306001478BB /* jscompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773112CA493A001478BB /* jscompat.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7784212CA5306001478BB /* jscpucfg.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773212CA493A001478BB /* jscpucfg.h */; }; - 1AB7784312CA5306001478BB /* jsdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773312CA493A001478BB /* jsdate.h */; }; - 1AB7784412CA5306001478BB /* jsdbgapi.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773412CA493A001478BB /* jsdbgapi.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7784512CA5306001478BB /* jsdbgapiinlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773512CA493A001478BB /* jsdbgapiinlines.h */; }; - 1AB7784612CA5306001478BB /* jsdhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773612CA493A001478BB /* jsdhash.h */; }; - 1AB7784712CA5306001478BB /* jsdtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773712CA493A001478BB /* jsdtoa.h */; }; - 1AB7784812CA5306001478BB /* jsemit.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773812CA493A001478BB /* jsemit.h */; }; - 1AB7784912CA5306001478BB /* jsexn.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773912CA493A001478BB /* jsexn.h */; }; - 1AB7784A12CA5306001478BB /* jsfun.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773A12CA493A001478BB /* jsfun.h */; }; - 1AB7784B12CA5306001478BB /* jsfuninlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773B12CA493A001478BB /* jsfuninlines.h */; }; - 1AB7784C12CA5306001478BB /* jsgc.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773C12CA493A001478BB /* jsgc.h */; }; - 1AB7784D12CA5306001478BB /* jsgcchunk.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773D12CA493A001478BB /* jsgcchunk.h */; }; - 1AB7784E12CA5306001478BB /* jsgcinlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773E12CA493A001478BB /* jsgcinlines.h */; }; - 1AB7784F12CA5306001478BB /* jsgcstats.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7773F12CA493A001478BB /* jsgcstats.h */; }; - 1AB7785012CA5306001478BB /* jshash.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774012CA493A001478BB /* jshash.h */; }; - 1AB7785112CA5306001478BB /* jshashtable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774112CA493A001478BB /* jshashtable.h */; }; - 1AB7785212CA5306001478BB /* jsinterp.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774212CA493A001478BB /* jsinterp.h */; }; - 1AB7785312CA5306001478BB /* jsinterpinlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774312CA493A001478BB /* jsinterpinlines.h */; }; - 1AB7785412CA5306001478BB /* jsinttypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774412CA493A001478BB /* jsinttypes.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7785512CA5306001478BB /* jsiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774512CA493A001478BB /* jsiter.h */; }; - 1AB7785612CA5306001478BB /* jslibmath.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774612CA493A001478BB /* jslibmath.h */; }; - 1AB7785712CA5306001478BB /* jslock.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774712CA493A001478BB /* jslock.h */; }; - 1AB7785812CA5306001478BB /* jslong.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774812CA493A001478BB /* jslong.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7785912CA5306001478BB /* jsmath.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774912CA493A001478BB /* jsmath.h */; }; - 1AB7785A12CA5306001478BB /* jsnativestack.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774A12CA493A001478BB /* jsnativestack.h */; }; - 1AB7785B12CA5306001478BB /* jsnum.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774B12CA493A001478BB /* jsnum.h */; }; - 1AB7785C12CA5306001478BB /* jsobj.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774C12CA493A001478BB /* jsobj.h */; }; - 1AB7785D12CA5306001478BB /* jsobjinlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774D12CA493A001478BB /* jsobjinlines.h */; }; - 1AB7785E12CA5306001478BB /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774E12CA493A001478BB /* json.h */; }; - 1AB7785F12CA5306001478BB /* jsopcode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7774F12CA493A001478BB /* jsopcode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7786012CA5306001478BB /* jsopcodeinlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775012CA493A001478BB /* jsopcodeinlines.h */; }; - 1AB7786112CA5306001478BB /* jsotypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775112CA493A001478BB /* jsotypes.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7786212CA5306001478BB /* jsparse.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775212CA493A001478BB /* jsparse.h */; }; - 1AB7786312CA5306001478BB /* jsprf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775312CA493A001478BB /* jsprf.h */; }; - 1AB7786412CA5306001478BB /* jsprobes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775412CA493A001478BB /* jsprobes.h */; }; - 1AB7786512CA5306001478BB /* jspropertycache.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775512CA493A001478BB /* jspropertycache.h */; }; - 1AB7786612CA5306001478BB /* jspropertycacheinlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775612CA493A001478BB /* jspropertycacheinlines.h */; }; - 1AB7786712CA5306001478BB /* jspropertytree.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775712CA493A001478BB /* jspropertytree.h */; }; - 1AB7786812CA5306001478BB /* jsproxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775812CA493A001478BB /* jsproxy.h */; }; - 1AB7786912CA5306001478BB /* jsprvtd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775912CA493A001478BB /* jsprvtd.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7786A12CA5306001478BB /* jspubtd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775A12CA493A001478BB /* jspubtd.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7786B12CA5306001478BB /* jsreflect.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775B12CA493A001478BB /* jsreflect.h */; }; - 1AB7786C12CA5306001478BB /* jsregexp.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775C12CA493A001478BB /* jsregexp.h */; }; - 1AB7786D12CA5306001478BB /* jsregexpinlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775D12CA493A001478BB /* jsregexpinlines.h */; }; - 1AB7786E12CA5306001478BB /* jsscan.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775E12CA493A001478BB /* jsscan.h */; }; - 1AB7786F12CA5306001478BB /* jsscope.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7775F12CA493A001478BB /* jsscope.h */; }; - 1AB7787012CA5306001478BB /* jsscopeinlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776012CA493A001478BB /* jsscopeinlines.h */; }; - 1AB7787112CA5306001478BB /* jsscript.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776112CA493A001478BB /* jsscript.h */; }; - 1AB7787212CA5306001478BB /* jsscriptinlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776212CA493A001478BB /* jsscriptinlines.h */; }; - 1AB7787312CA5306001478BB /* jsstaticcheck.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776312CA493A001478BB /* jsstaticcheck.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7787412CA5306001478BB /* jsstdint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776412CA493A001478BB /* jsstdint.h */; }; - 1AB7787512CA5306001478BB /* jsstr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776512CA493A001478BB /* jsstr.h */; }; - 1AB7787612CA5306001478BB /* jsstrinlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776612CA493A001478BB /* jsstrinlines.h */; }; - 1AB7787712CA5306001478BB /* jstl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776712CA493A001478BB /* jstl.h */; }; - 1AB7787812CA5306001478BB /* jstracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776812CA493A001478BB /* jstracer.h */; }; - 1AB7787912CA5306001478BB /* jstypedarray.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776912CA493A001478BB /* jstypedarray.h */; }; - 1AB7787A12CA5306001478BB /* jstypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776A12CA493A001478BB /* jstypes.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7787B12CA5306001478BB /* jsutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776B12CA493A001478BB /* jsutil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7787C12CA5306001478BB /* jsval.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776C12CA493A001478BB /* jsval.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7787D12CA5306001478BB /* jsvalue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776D12CA493A001478BB /* jsvalue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7787E12CA5306001478BB /* jsvector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776E12CA493A001478BB /* jsvector.h */; }; - 1AB7787F12CA5306001478BB /* jsversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7776F12CA493A001478BB /* jsversion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7788012CA5306001478BB /* jswin.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7777012CA493A001478BB /* jswin.h */; }; - 1AB7788112CA5306001478BB /* jswrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7777112CA493A001478BB /* jswrapper.h */; }; - 1AB7788212CA5306001478BB /* jsxdrapi.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7777212CA493A001478BB /* jsxdrapi.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7788312CA5306001478BB /* jsxml.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7777312CA493A001478BB /* jsxml.h */; }; - 1AB7788412CA5306001478BB /* prmjtime.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7777412CA493A001478BB /* prmjtime.h */; }; - 1AB7788512CA5306001478BB /* resource.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7777512CA493A001478BB /* resource.h */; }; - 1AB7788A12CA5320001478BB /* js-config.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB25AB612CA1C1D00C67F42 /* js-config.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AB7788B12CA5320001478BB /* jsautocfg.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB25AB712CA1C1D00C67F42 /* jsautocfg.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AC16B6112F0907000907218 /* jsoplengen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC16B6012F0907000907218 /* jsoplengen.cpp */; }; - 1AC16CC312F0945000907218 /* jskwgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC16CC212F0945000907218 /* jskwgen.cpp */; }; - 1AD05E2E12CD18B100704F1D /* selfTest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E0F12CD18B100704F1D /* selfTest.cpp */; }; - 1AD05E3012CD18B100704F1D /* testClassGetter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E1112CD18B100704F1D /* testClassGetter.cpp */; }; - 1AD05E3112CD18B100704F1D /* testCloneScript.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E1212CD18B100704F1D /* testCloneScript.cpp */; }; - 1AD05E3212CD18B100704F1D /* testConservativeGC.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E1312CD18B100704F1D /* testConservativeGC.cpp */; }; - 1AD05E3312CD18B100704F1D /* testContexts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E1412CD18B100704F1D /* testContexts.cpp */; }; - 1AD05E3412CD18B100704F1D /* testDebugger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E1512CD18B100704F1D /* testDebugger.cpp */; }; - 1AD05E3512CD18B100704F1D /* testDeepFreeze.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E1612CD18B100704F1D /* testDeepFreeze.cpp */; }; - 1AD05E3612CD18B100704F1D /* testDefineGetterSetterNonEnumerable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E1712CD18B100704F1D /* testDefineGetterSetterNonEnumerable.cpp */; }; - 1AD05E3712CD18B100704F1D /* testDefineProperty.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E1812CD18B100704F1D /* testDefineProperty.cpp */; }; - 1AD05E3812CD18B100704F1D /* testExtendedEq.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E1912CD18B100704F1D /* testExtendedEq.cpp */; }; - 1AD05E3A12CD18B100704F1D /* testGCChunkAlloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E1B12CD18B100704F1D /* testGCChunkAlloc.cpp */; }; - 1AD05E3B12CD18B100704F1D /* testGetPropertyDefault.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E1C12CD18B100704F1D /* testGetPropertyDefault.cpp */; }; - 1AD05E3C12CD18B100704F1D /* testIntString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E1D12CD18B100704F1D /* testIntString.cpp */; }; - 1AD05E3E12CD18B100704F1D /* testLookup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E1F12CD18B100704F1D /* testLookup.cpp */; }; - 1AD05E3F12CD18B100704F1D /* testNewObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E2012CD18B100704F1D /* testNewObject.cpp */; }; - 1AD05E4012CD18B100704F1D /* testOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E2112CD18B100704F1D /* testOps.cpp */; }; - 1AD05E4112CD18B100704F1D /* testPropCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E2212CD18B100704F1D /* testPropCache.cpp */; }; - 1AD05E4212CD18B100704F1D /* tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E2312CD18B100704F1D /* tests.cpp */; }; - 1AD05E4312CD18B100704F1D /* testSameValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E2512CD18B100704F1D /* testSameValue.cpp */; }; - 1AD05E4412CD18B100704F1D /* testScriptObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E2612CD18B100704F1D /* testScriptObject.cpp */; }; - 1AD05E4612CD18B100704F1D /* testThreadGC.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E2812CD18B100704F1D /* testThreadGC.cpp */; }; - 1AD05E4712CD18B100704F1D /* testThreads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E2912CD18B100704F1D /* testThreads.cpp */; }; - 1AD05E4812CD18B100704F1D /* testTrap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E2A12CD18B100704F1D /* testTrap.cpp */; }; - 1AD05E4912CD18B100704F1D /* testUTF8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E2B12CD18B100704F1D /* testUTF8.cpp */; }; - 1AD05E4A12CD18B100704F1D /* testVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E2C12CD18B100704F1D /* testVersion.cpp */; }; - 1AD05E4B12CD18B100704F1D /* testXDR.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05E2D12CD18B100704F1D /* testXDR.cpp */; }; - 1AD05E4E12CD18C900704F1D /* libjs_for_oolite.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D2AAC046055464E500DB518D /* libjs_for_oolite.a */; }; - 1AD05E6C12CD1ABE00704F1D /* libnspr4_for_oolite.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AB25ACA12CA1CB100C67F42 /* libnspr4_for_oolite.a */; }; - 1AD05ECA12CD1F5300704F1D /* pripc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BA612CA1D7200C67F42 /* pripc.c */; }; - 1AD05EE612CD208D00704F1D /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AD05EE512CD208D00704F1D /* CoreFoundation.framework */; }; - 1AD05EEC12CD209C00704F1D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AD05EEB12CD209C00704F1D /* Foundation.framework */; }; - 1AD05EF812CD20ED00704F1D /* prinit.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BA412CA1D7200C67F42 /* prinit.c */; }; - 1AD05F0412CD217100704F1D /* uxproces.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B7412CA1D7200C67F42 /* uxproces.c */; }; - 1AD05F0512CD218300704F1D /* prlink.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B1412CA1D7200C67F42 /* prlink.c */; }; - 1AD05F0612CD219D00704F1D /* priometh.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B0512CA1D7200C67F42 /* priometh.c */; }; - 1AD05F0912CD21B900704F1D /* prnetdb.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BAA12CA1D7200C67F42 /* prnetdb.c */; }; - 1AD05F0A12CD21CA00704F1D /* prlayer.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B0712CA1D7200C67F42 /* prlayer.c */; }; - 1AD05F0B12CD21D800704F1D /* darwin.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B4612CA1D7200C67F42 /* darwin.c */; }; - 1AD05F0F12CD220C00704F1D /* prmmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B0A12CA1D7200C67F42 /* prmmap.c */; }; - 1AD05F1212CD222000704F1D /* pr-oolite-shim.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA209112CB9E8600EC0F43 /* pr-oolite-shim.m */; }; - 1AD05F1412CD224100704F1D /* jsapitests-oolite-shim.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AD05F1312CD224100704F1D /* jsapitests-oolite-shim.m */; }; - 1AD05F1812CD22B500704F1D /* ptio.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BB912CA1D7200C67F42 /* ptio.c */; }; - 1AD05F1A12CD22C800704F1D /* prmwait.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B0B12CA1D7200C67F42 /* prmwait.c */; }; - 1AD05F1B12CD22D600704F1D /* prprf.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B0D12CA1D7200C67F42 /* prprf.c */; }; - 1AD05F2312CD230800704F1D /* prtime.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BAF12CA1D7200C67F42 /* prtime.c */; }; - 1AD05F2D12CD237200704F1D /* prenv.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B9E12CA1D7200C67F42 /* prenv.c */; }; - 1AD05F3112CD237F00704F1D /* prdtoa.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B9D12CA1D7200C67F42 /* prdtoa.c */; }; - 1AD05F3512CD239700704F1D /* prseg.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B9112CA1D7200C67F42 /* prseg.c */; }; - 1AD05F3C12CD23DF00704F1D /* prscanf.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B0E12CA1D7200C67F42 /* prscanf.c */; }; - 1AD05F3F12CD23F400704F1D /* prfdcach.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B0212CA1D7200C67F42 /* prfdcach.c */; }; - 1AD05F4212CD241A00704F1D /* prosdep.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B4012CA1D7200C67F42 /* prosdep.c */; }; - 1AD05F4912CD245100704F1D /* prmapopt.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B0912CA1D7200C67F42 /* prmapopt.c */; }; - 1AD05F4C12CD246C00704F1D /* prstdio.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B1012CA1D7200C67F42 /* prstdio.c */; }; - 1AD05F4F12CD247D00704F1D /* prrwlock.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BCD12CA1D7200C67F42 /* prrwlock.c */; }; - 1AD05F5112CD248A00704F1D /* prcmon.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BC912CA1D7200C67F42 /* prcmon.c */; }; - 1AD05F5612CD24BF00704F1D /* prerr.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B9F12CA1D7200C67F42 /* prerr.c */; }; - 1AD05F5B12CD24FC00704F1D /* ptmisc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BBA12CA1D7200C67F42 /* ptmisc.c */; }; - 1AD05F6012CD251F00704F1D /* prerrortable.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BA312CA1D7200C67F42 /* prerrortable.c */; }; - 1AD05F6A12CD256200704F1D /* praton.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B9B12CA1D7200C67F42 /* praton.c */; }; - 1AD05F7C12CD274E00704F1D /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AD05F7B12CD274E00704F1D /* CoreServices.framework */; }; - 1AD5A78C12D38C4A00B62503 /* RegexJIT.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F16712CA656900FB681A /* RegexJIT.cpp */; settings = {COMPILER_FLAGS = "-include assembler/wtf/Platform.h"; }; }; - 1AD5A7A612D38E8400B62503 /* RegexCompiler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD5A7A412D38E8400B62503 /* RegexCompiler.cpp */; }; - 1AD5A7A712D38E8400B62503 /* RegexCompiler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD5A7A512D38E8400B62503 /* RegexCompiler.h */; }; - 1AEA203012CB9AF200EC0F43 /* ptthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BBC12CA1D7200C67F42 /* ptthread.c */; }; - 1AEA207012CB9C7200EC0F43 /* ptsynch.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BBB12CA1D7200C67F42 /* ptsynch.c */; }; - 1AEA207312CB9C8E00EC0F43 /* prmem.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B1A12CA1D7200C67F42 /* prmem.c */; }; - 1AEA207912CB9CBB00EC0F43 /* pratom.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B9A12CA1D7200C67F42 /* pratom.c */; }; - 1AEA208012CB9CE800EC0F43 /* os_Darwin_universal.s in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA207F12CB9CE800EC0F43 /* os_Darwin_universal.s */; }; - 1AEA208912CB9D6F00EC0F43 /* prtpd.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BCF12CA1D7200C67F42 /* prtpd.c */; }; - 1AEA20C112CBA25200EC0F43 /* prinrval.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BA512CA1D7200C67F42 /* prinrval.c */; }; - 1AEA20C612CBA31700EC0F43 /* unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B7012CA1D7200C67F42 /* unix.c */; }; - 1AEA20CA12CBA33700EC0F43 /* prerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25BA212CA1D7200C67F42 /* prerror.c */; }; - 1AEA20CE12CBA34E00EC0F43 /* unix_errors.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AB25B7112CA1D7200C67F42 /* unix_errors.c */; }; - 1AEA215112CBBC1500EC0F43 /* Writer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA214F12CBBC1500EC0F43 /* Writer.cpp */; }; - 1AEA215212CBBC1500EC0F43 /* Writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA215012CBBC1500EC0F43 /* Writer.h */; }; - 1AEA215712CBBC4100EC0F43 /* nanojit.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA215612CBBC4100EC0F43 /* nanojit.h */; }; - 1AEA216212CBBCAD00EC0F43 /* avmplus.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA216112CBBCAD00EC0F43 /* avmplus.h */; }; - 1AEA216512CBBCC800EC0F43 /* njconfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA216312CBBCC800EC0F43 /* njconfig.h */; }; - 1AEA216612CBBCC800EC0F43 /* njcpudetect.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA216412CBBCC800EC0F43 /* njcpudetect.h */; }; - 1AEA217712CBBFA600EC0F43 /* jstracer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA1FBB12CB97A600EC0F43 /* jstracer.cpp */; }; - 1AEA218D12CBC22400EC0F43 /* jsbuiltins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A06F0DE12CA5A6900FB681A /* jsbuiltins.cpp */; }; - 1AEA219312CBC26100EC0F43 /* LIR.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA219212CBC26100EC0F43 /* LIR.cpp */; }; - 1AEA219512CBC26700EC0F43 /* LIR.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA219412CBC26700EC0F43 /* LIR.h */; }; - 1AEA21C412CBC5AB00EC0F43 /* CodeAlloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA21C212CBC5AB00EC0F43 /* CodeAlloc.cpp */; }; - 1AEA21C512CBC5AB00EC0F43 /* CodeAlloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA21C312CBC5AB00EC0F43 /* CodeAlloc.h */; }; - 1AEA21C812CBC5C400EC0F43 /* Fragmento.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA21C612CBC5C400EC0F43 /* Fragmento.cpp */; }; - 1AEA21C912CBC5C400EC0F43 /* Fragmento.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA21C712CBC5C400EC0F43 /* Fragmento.h */; }; - 1AEA21CE12CBC5D600EC0F43 /* VMPI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA21CC12CBC5D600EC0F43 /* VMPI.cpp */; }; - 1AEA21CF12CBC5D600EC0F43 /* VMPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA21CD12CBC5D600EC0F43 /* VMPI.h */; }; - 1AEA21D612CBC5F100EC0F43 /* Assembler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA21D412CBC5F100EC0F43 /* Assembler.cpp */; }; - 1AEA21D712CBC5F100EC0F43 /* Assembler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA21D512CBC5F100EC0F43 /* Assembler.h */; }; - 1AEA21DE12CBC63100EC0F43 /* NativeUniversal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA21DD12CBC63100EC0F43 /* NativeUniversal.cpp */; }; - 1AEA21E812CBC6AA00EC0F43 /* Native.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA21E312CBC6AA00EC0F43 /* Native.h */; }; - 1AEA21E912CBC6AA00EC0F43 /* NativeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA21E412CBC6AA00EC0F43 /* NativeCommon.h */; }; - 1AEA21EA12CBC6AA00EC0F43 /* Nativei386.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA21E512CBC6AA00EC0F43 /* Nativei386.h */; }; - 1AEA21EB12CBC6AA00EC0F43 /* NativePPC.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA21E612CBC6AA00EC0F43 /* NativePPC.h */; }; - 1AEA21EC12CBC6AA00EC0F43 /* NativeX64.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA21E712CBC6AA00EC0F43 /* NativeX64.h */; }; - 1AEA21F812CBC75F00EC0F43 /* avmplus.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA21F712CBC75F00EC0F43 /* avmplus.cpp */; }; - 1AEA21FE12CBC78000EC0F43 /* njconfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA21FD12CBC78000EC0F43 /* njconfig.cpp */; }; - 1AEA220212CBC78D00EC0F43 /* RegAlloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA220112CBC78D00EC0F43 /* RegAlloc.cpp */; }; - 1AEA220412CBC79600EC0F43 /* RegAlloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA220312CBC79600EC0F43 /* RegAlloc.h */; }; - 1AEA220812CBC7A500EC0F43 /* Allocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA220712CBC7A500EC0F43 /* Allocator.cpp */; }; - 1AEA220A12CBC7A800EC0F43 /* Allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA220912CBC7A800EC0F43 /* Allocator.h */; }; - 1AEA220E12CBC7BF00EC0F43 /* Containers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA220D12CBC7BF00EC0F43 /* Containers.cpp */; }; - 1AEA221012CBC7C200EC0F43 /* Containers.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA220F12CBC7C200EC0F43 /* Containers.h */; }; - 1AEA230312CBED4F00EC0F43 /* AbstractMacroAssembler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA22DE12CBECDF00EC0F43 /* AbstractMacroAssembler.h */; }; - 1AEA230412CBED5B00EC0F43 /* AssemblerBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA22E212CBECDF00EC0F43 /* AssemblerBuffer.h */; }; - 1AEA230512CBED5B00EC0F43 /* AssemblerBufferWithConstantPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA22E312CBECDF00EC0F43 /* AssemblerBufferWithConstantPool.h */; }; - 1AEA230612CBED5E00EC0F43 /* CodeLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA22E412CBECDF00EC0F43 /* CodeLocation.h */; }; - 1AEA230712CBED5F00EC0F43 /* LinkBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA22E512CBECDF00EC0F43 /* LinkBuffer.h */; }; - 1AEA230812CBED6000EC0F43 /* MacroAssembler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA22E612CBECDF00EC0F43 /* MacroAssembler.h */; }; - 1AEA230912CBED6B00EC0F43 /* MacroAssemblerCodeRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA22EA12CBECDF00EC0F43 /* MacroAssemblerCodeRef.h */; }; - 1AEA230A12CBED6B00EC0F43 /* MacroAssemblerX86.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA22EB12CBECDF00EC0F43 /* MacroAssemblerX86.h */; }; - 1AEA230B12CBED6C00EC0F43 /* MacroAssemblerX86_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA22EC12CBECDF00EC0F43 /* MacroAssemblerX86_64.h */; }; - 1AEA230C12CBED6D00EC0F43 /* MacroAssemblerX86Common.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA22EE12CBECDF00EC0F43 /* MacroAssemblerX86Common.h */; }; - 1AEA230D12CBED6F00EC0F43 /* RepatchBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA22EF12CBECDF00EC0F43 /* RepatchBuffer.h */; }; - 1AEA230E12CBED7000EC0F43 /* X86Assembler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA22F012CBECDF00EC0F43 /* X86Assembler.h */; }; - 1AEA234112CBF6A700EC0F43 /* Logging.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA232912CBF6A300EC0F43 /* Logging.cpp */; }; - 1AEA236B12CBF95500EC0F43 /* MacroAssemblerX86Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA22ED12CBECDF00EC0F43 /* MacroAssemblerX86Common.cpp */; }; - 1AEA23D012CBFFF700EC0F43 /* jsanalyze.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA1FBF12CB981C00EC0F43 /* jsanalyze.cpp */; }; - 1AEA23D512CC003800EC0F43 /* js-oolite-shim.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA23D412CC003800EC0F43 /* js-oolite-shim.cpp */; }; - 1AEA23E012CC012700EC0F43 /* ExecutableAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA22F212CBECDF00EC0F43 /* ExecutableAllocator.cpp */; }; - 1AEA23E112CC012900EC0F43 /* ExecutableAllocatorPosix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA22F412CBECDF00EC0F43 /* ExecutableAllocatorPosix.cpp */; }; - 1AEA23E212CC012C00EC0F43 /* ExecutableAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEA22F312CBECDF00EC0F43 /* ExecutableAllocator.h */; }; - 1AEA23E912CC029500EC0F43 /* Retcon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AEA233512CBF6A300EC0F43 /* Retcon.cpp */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 1AC16B6212F0907A00907218 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1AC16B5812F0905200907218; - remoteInfo = jsoplengen; - }; - 1AC16CDF12F0952400907218 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1AC16CB712F0943F00907218; - remoteInfo = jskwgen; - }; - 1AD05E4C12CD18C000704F1D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2AAC045055464E500DB518D; - remoteInfo = libjs; - }; - 1AEA203112CB9AF900EC0F43 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1AB25AC112CA1CB100C67F42; - remoteInfo = libnspr; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 1A06F07C12CA561C00FB681A /* jskeyword.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = jskeyword.tbl; sourceTree = ""; }; - 1A06F07D12CA561C00FB681A /* jsopcode.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = jsopcode.tbl; sourceTree = ""; }; - 1A06F07E12CA561C00FB681A /* jsproto.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = jsproto.tbl; sourceTree = ""; }; - 1A06F07F12CA561C00FB681A /* jsreops.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = jsreops.tbl; sourceTree = ""; }; - 1A06F0CE12CA59A400FB681A /* jspropertytree.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jspropertytree.cpp; sourceTree = ""; }; - 1A06F0D012CA59B300FB681A /* jsparse.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsparse.cpp; sourceTree = ""; }; - 1A06F0D212CA59CF00FB681A /* jsnum.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsnum.cpp; sourceTree = ""; }; - 1A06F0D812CA5A1900FB681A /* jsdhash.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsdhash.cpp; sourceTree = ""; }; - 1A06F0DC12CA5A4F00FB681A /* jsbool.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsbool.cpp; sourceTree = ""; }; - 1A06F0DE12CA5A6900FB681A /* jsbuiltins.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsbuiltins.cpp; sourceTree = ""; }; - 1A06F0E612CA5AC800FB681A /* jsregexp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsregexp.cpp; sourceTree = ""; }; - 1A06F0EF12CA5B3400FB681A /* jsinvoke.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsinvoke.cpp; sourceTree = ""; }; - 1A06F0F612CA5BC200FB681A /* jslog2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jslog2.cpp; sourceTree = ""; }; - 1A06F0FB12CA5C0E00FB681A /* jstypedarray.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jstypedarray.cpp; sourceTree = ""; }; - 1A06F10112CA5C2700FB681A /* jsemit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsemit.cpp; sourceTree = ""; }; - 1A06F11D12CA5CAE00FB681A /* jsdtoa.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsdtoa.cpp; sourceTree = ""; }; - 1A06F12112CA601E00FB681A /* jsexn.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsexn.cpp; sourceTree = ""; }; - 1A06F13812CA62C300FB681A /* jsgcstats.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsgcstats.cpp; sourceTree = ""; }; - 1A06F13A12CA62DD00FB681A /* jsnativestack.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsnativestack.cpp; sourceTree = ""; }; - 1A06F14512CA63C200FB681A /* jscompartment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jscompartment.cpp; sourceTree = ""; }; - 1A06F14912CA63E700FB681A /* jsmath.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsmath.cpp; sourceTree = ""; }; - 1A06F14D12CA643600FB681A /* jsreflect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsreflect.cpp; sourceTree = ""; }; - 1A06F15112CA646E00FB681A /* jsprf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsprf.cpp; sourceTree = ""; }; - 1A06F15512CA64AB00FB681A /* jswrapper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jswrapper.cpp; sourceTree = ""; }; - 1A06F15912CA64D000FB681A /* prmjtime.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = prmjtime.cpp; sourceTree = ""; }; - 1A06F15D12CA64EF00FB681A /* jspropertycache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jspropertycache.cpp; sourceTree = ""; }; - 1A06F16112CA651100FB681A /* jsgcchunk.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsgcchunk.cpp; sourceTree = ""; }; - 1A06F16712CA656900FB681A /* RegexJIT.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RegexJIT.cpp; sourceTree = ""; }; - 1A06F16912CA656F00FB681A /* RegexJIT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegexJIT.h; sourceTree = ""; }; - 1A06F18112CA693B00FB681A /* pcre_compile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pcre_compile.cpp; sourceTree = ""; }; - 1A06F18312CA693F00FB681A /* pcre_exec.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pcre_exec.cpp; sourceTree = ""; }; - 1A06F18D12CA697100FB681A /* js-oolite-prefix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "js-oolite-prefix.h"; sourceTree = ""; }; - 1A06F19412CA6A4C00FB681A /* pcre_xclass.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pcre_xclass.cpp; sourceTree = ""; }; - 1A06F19812CA6A5A00FB681A /* pcre_tables.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pcre_tables.cpp; sourceTree = ""; }; - 1A06F19E12CA6A7400FB681A /* pcre_ucp_searchfuncs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pcre_ucp_searchfuncs.cpp; sourceTree = ""; }; - 1A06F1B712CA6B8600FB681A /* conversions.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = conversions.cc; sourceTree = ""; }; - 1A06F1BB12CA6B9C00FB681A /* utils.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utils.cc; sourceTree = ""; }; - 1A06F1BF12CA6BAB00FB681A /* v8-dtoa.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "v8-dtoa.cc"; sourceTree = ""; }; - 1A06F1C512CA6BBC00FB681A /* fast-dtoa.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "fast-dtoa.cc"; sourceTree = ""; }; - 1A06F1C912CA6BD100FB681A /* diy-fp.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "diy-fp.cc"; sourceTree = ""; }; - 1A06F1CB12CA6BDB00FB681A /* platform.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = platform.cc; sourceTree = ""; }; - 1A06F1D112CA6C1800FB681A /* checks.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = checks.cc; sourceTree = ""; }; - 1A63DE9012CA9C5C00508CDB /* jsclone.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsclone.cpp; sourceTree = ""; }; - 1AB25A6712CA12BA00C67F42 /* oolite-targets.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "oolite-targets.xcconfig"; path = "../../../src/Cocoa/oolite-targets.xcconfig"; sourceTree = SOURCE_ROOT; }; - 1AB25AA612CA1B6E00C67F42 /* jsapi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsapi.cpp; sourceTree = ""; }; - 1AB25AB612CA1C1D00C67F42 /* js-config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "js-config.h"; sourceTree = ""; }; - 1AB25AB712CA1C1D00C67F42 /* jsautocfg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsautocfg.h; sourceTree = ""; }; - 1AB25ACA12CA1CB100C67F42 /* libnspr4_for_oolite.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libnspr4_for_oolite.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1AB25AD312CA1D7200C67F42 /* btcvar.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = btcvar.c; sourceTree = ""; }; - 1AB25AD412CA1D7200C67F42 /* btlocks.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = btlocks.c; sourceTree = ""; }; - 1AB25AD512CA1D7200C67F42 /* btmisc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = btmisc.c; sourceTree = ""; }; - 1AB25AD612CA1D7200C67F42 /* btmon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = btmon.c; sourceTree = ""; }; - 1AB25AD712CA1D7200C67F42 /* btsem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = btsem.c; sourceTree = ""; }; - 1AB25AD812CA1D7200C67F42 /* btthread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = btthread.c; sourceTree = ""; }; - 1AB25ADE12CA1D7200C67F42 /* rcascii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rcascii.h; sourceTree = ""; }; - 1AB25ADF12CA1D7200C67F42 /* rcbase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rcbase.cpp; sourceTree = ""; }; - 1AB25AE012CA1D7200C67F42 /* rcbase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rcbase.h; sourceTree = ""; }; - 1AB25AE112CA1D7200C67F42 /* rccv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rccv.cpp; sourceTree = ""; }; - 1AB25AE212CA1D7200C67F42 /* rccv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rccv.h; sourceTree = ""; }; - 1AB25AE312CA1D7200C67F42 /* rcfileio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rcfileio.cpp; sourceTree = ""; }; - 1AB25AE412CA1D7200C67F42 /* rcfileio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rcfileio.h; sourceTree = ""; }; - 1AB25AE512CA1D7200C67F42 /* rcinrval.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rcinrval.cpp; sourceTree = ""; }; - 1AB25AE612CA1D7200C67F42 /* rcinrval.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rcinrval.h; sourceTree = ""; }; - 1AB25AE712CA1D7200C67F42 /* rcio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rcio.cpp; sourceTree = ""; }; - 1AB25AE812CA1D7200C67F42 /* rcio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rcio.h; sourceTree = ""; }; - 1AB25AE912CA1D7200C67F42 /* rclock.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rclock.cpp; sourceTree = ""; }; - 1AB25AEA12CA1D7200C67F42 /* rclock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rclock.h; sourceTree = ""; }; - 1AB25AEB12CA1D7200C67F42 /* rcmon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rcmon.h; sourceTree = ""; }; - 1AB25AEC12CA1D7200C67F42 /* rcnetdb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rcnetdb.cpp; sourceTree = ""; }; - 1AB25AED12CA1D7200C67F42 /* rcnetdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rcnetdb.h; sourceTree = ""; }; - 1AB25AEE12CA1D7200C67F42 /* rcnetio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rcnetio.cpp; sourceTree = ""; }; - 1AB25AEF12CA1D7200C67F42 /* rcnetio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rcnetio.h; sourceTree = ""; }; - 1AB25AF012CA1D7200C67F42 /* rcthread.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rcthread.cpp; sourceTree = ""; }; - 1AB25AF112CA1D7200C67F42 /* rcthread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rcthread.h; sourceTree = ""; }; - 1AB25AF212CA1D7200C67F42 /* rctime.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rctime.cpp; sourceTree = ""; }; - 1AB25AF312CA1D7200C67F42 /* rctime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rctime.h; sourceTree = ""; }; - 1AB25B0112CA1D7200C67F42 /* prdir.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prdir.c; sourceTree = ""; }; - 1AB25B0212CA1D7200C67F42 /* prfdcach.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prfdcach.c; sourceTree = ""; }; - 1AB25B0312CA1D7200C67F42 /* prfile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prfile.c; sourceTree = ""; }; - 1AB25B0412CA1D7200C67F42 /* prio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prio.c; sourceTree = ""; }; - 1AB25B0512CA1D7200C67F42 /* priometh.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = priometh.c; sourceTree = ""; }; - 1AB25B0612CA1D7200C67F42 /* pripv6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pripv6.c; sourceTree = ""; }; - 1AB25B0712CA1D7200C67F42 /* prlayer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prlayer.c; sourceTree = ""; }; - 1AB25B0812CA1D7200C67F42 /* prlog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prlog.c; sourceTree = ""; }; - 1AB25B0912CA1D7200C67F42 /* prmapopt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prmapopt.c; sourceTree = ""; }; - 1AB25B0A12CA1D7200C67F42 /* prmmap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prmmap.c; sourceTree = ""; }; - 1AB25B0B12CA1D7200C67F42 /* prmwait.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prmwait.c; sourceTree = ""; }; - 1AB25B0C12CA1D7200C67F42 /* prpolevt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prpolevt.c; sourceTree = ""; }; - 1AB25B0D12CA1D7200C67F42 /* prprf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prprf.c; sourceTree = ""; }; - 1AB25B0E12CA1D7200C67F42 /* prscanf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prscanf.c; sourceTree = ""; }; - 1AB25B0F12CA1D7200C67F42 /* prsocket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prsocket.c; sourceTree = ""; }; - 1AB25B1012CA1D7200C67F42 /* prstdio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prstdio.c; sourceTree = ""; }; - 1AB25B1412CA1D7200C67F42 /* prlink.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prlink.c; sourceTree = ""; }; - 1AB25B1912CA1D7200C67F42 /* prmalloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prmalloc.c; sourceTree = ""; }; - 1AB25B1A12CA1D7200C67F42 /* prmem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prmem.c; sourceTree = ""; }; - 1AB25B4012CA1D7200C67F42 /* prosdep.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prosdep.c; sourceTree = ""; }; - 1AB25B4312CA1D7200C67F42 /* aix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = aix.c; sourceTree = ""; }; - 1AB25B4412CA1D7200C67F42 /* aixwrap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = aixwrap.c; sourceTree = ""; }; - 1AB25B4512CA1D7200C67F42 /* bsdi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bsdi.c; sourceTree = ""; }; - 1AB25B4612CA1D7200C67F42 /* darwin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = darwin.c; sourceTree = ""; }; - 1AB25B4712CA1D7200C67F42 /* dgux.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dgux.c; sourceTree = ""; }; - 1AB25B4812CA1D7200C67F42 /* freebsd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = freebsd.c; sourceTree = ""; }; - 1AB25B4912CA1D7200C67F42 /* hpux.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hpux.c; sourceTree = ""; }; - 1AB25B4A12CA1D7200C67F42 /* irix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = irix.c; sourceTree = ""; }; - 1AB25B4B12CA1D7200C67F42 /* linux.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = linux.c; sourceTree = ""; }; - 1AB25B4D12CA1D7200C67F42 /* ncr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ncr.c; sourceTree = ""; }; - 1AB25B4E12CA1D7200C67F42 /* nec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nec.c; sourceTree = ""; }; - 1AB25B4F12CA1D7200C67F42 /* netbsd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = netbsd.c; sourceTree = ""; }; - 1AB25B5012CA1D7200C67F42 /* nextstep.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nextstep.c; sourceTree = ""; }; - 1AB25B5112CA1D7200C67F42 /* nto.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nto.c; sourceTree = ""; }; - 1AB25B5312CA1D7200C67F42 /* openbsd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = openbsd.c; sourceTree = ""; }; - 1AB25B5412CA1D7200C67F42 /* os_AIX.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_AIX.s; sourceTree = ""; }; - 1AB25B5512CA1D7200C67F42 /* os_BSD_386_2.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_BSD_386_2.s; sourceTree = ""; }; - 1AB25B5612CA1D7200C67F42 /* os_Darwin.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_Darwin.s; sourceTree = ""; }; - 1AB25B5712CA1D7200C67F42 /* os_Darwin_ppc.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_Darwin_ppc.s; sourceTree = ""; }; - 1AB25B5812CA1D7200C67F42 /* os_Darwin_x86.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_Darwin_x86.s; sourceTree = ""; }; - 1AB25B5912CA1D7200C67F42 /* os_Darwin_x86_64.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_Darwin_x86_64.s; sourceTree = ""; }; - 1AB25B5A12CA1D7200C67F42 /* os_HPUX.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_HPUX.s; sourceTree = ""; }; - 1AB25B5B12CA1D7200C67F42 /* os_HPUX_ia64.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_HPUX_ia64.s; sourceTree = ""; }; - 1AB25B5C12CA1D7200C67F42 /* os_Irix.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_Irix.s; sourceTree = ""; }; - 1AB25B5D12CA1D7200C67F42 /* os_Linux_ia64.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_Linux_ia64.s; sourceTree = ""; }; - 1AB25B5E12CA1D7200C67F42 /* os_Linux_ppc.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_Linux_ppc.s; sourceTree = ""; }; - 1AB25B5F12CA1D7200C67F42 /* os_Linux_x86.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_Linux_x86.s; sourceTree = ""; }; - 1AB25B6012CA1D7200C67F42 /* os_Linux_x86_64.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_Linux_x86_64.s; sourceTree = ""; }; - 1AB25B6112CA1D7200C67F42 /* os_ReliantUNIX.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_ReliantUNIX.s; sourceTree = ""; }; - 1AB25B6212CA1D7200C67F42 /* os_SunOS_sparcv9.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_SunOS_sparcv9.s; sourceTree = ""; }; - 1AB25B6312CA1D7200C67F42 /* os_SunOS_ultrasparc.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_SunOS_ultrasparc.s; sourceTree = ""; }; - 1AB25B6412CA1D7200C67F42 /* os_SunOS_x86.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_SunOS_x86.s; sourceTree = ""; }; - 1AB25B6512CA1D7200C67F42 /* os_SunOS_x86_64.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_SunOS_x86_64.s; sourceTree = ""; }; - 1AB25B6612CA1D7200C67F42 /* osf1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = osf1.c; sourceTree = ""; }; - 1AB25B6712CA1D7200C67F42 /* pthreads_user.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pthreads_user.c; sourceTree = ""; }; - 1AB25B6812CA1D7200C67F42 /* qnx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = qnx.c; sourceTree = ""; }; - 1AB25B6912CA1D7200C67F42 /* reliantunix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = reliantunix.c; sourceTree = ""; }; - 1AB25B6A12CA1D7200C67F42 /* riscos.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = riscos.c; sourceTree = ""; }; - 1AB25B6B12CA1D7200C67F42 /* scoos.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = scoos.c; sourceTree = ""; }; - 1AB25B6C12CA1D7200C67F42 /* solaris.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = solaris.c; sourceTree = ""; }; - 1AB25B6D12CA1D7200C67F42 /* sony.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sony.c; sourceTree = ""; }; - 1AB25B6E12CA1D7200C67F42 /* sunos4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sunos4.c; sourceTree = ""; }; - 1AB25B6F12CA1D7200C67F42 /* symbian.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = symbian.c; sourceTree = ""; }; - 1AB25B7012CA1D7200C67F42 /* unix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unix.c; sourceTree = ""; }; - 1AB25B7112CA1D7200C67F42 /* unix_errors.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unix_errors.c; sourceTree = ""; }; - 1AB25B7212CA1D7200C67F42 /* unixware.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unixware.c; sourceTree = ""; }; - 1AB25B7312CA1D7200C67F42 /* uxpoll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uxpoll.c; sourceTree = ""; }; - 1AB25B7412CA1D7200C67F42 /* uxproces.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uxproces.c; sourceTree = ""; }; - 1AB25B7512CA1D7200C67F42 /* uxrng.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uxrng.c; sourceTree = ""; }; - 1AB25B7612CA1D7200C67F42 /* uxshm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uxshm.c; sourceTree = ""; }; - 1AB25B7712CA1D7200C67F42 /* uxwrap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uxwrap.c; sourceTree = ""; }; - 1AB25B9112CA1D7200C67F42 /* prseg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prseg.c; sourceTree = ""; }; - 1AB25B9212CA1D7200C67F42 /* prshm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prshm.c; sourceTree = ""; }; - 1AB25B9312CA1D7200C67F42 /* prshma.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prshma.c; sourceTree = ""; }; - 1AB25B9712CA1D7200C67F42 /* dtoa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dtoa.c; sourceTree = ""; }; - 1AB25B9912CA1D7200C67F42 /* pralarm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pralarm.c; sourceTree = ""; }; - 1AB25B9A12CA1D7200C67F42 /* pratom.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pratom.c; sourceTree = ""; }; - 1AB25B9B12CA1D7200C67F42 /* praton.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = praton.c; sourceTree = ""; }; - 1AB25B9C12CA1D7200C67F42 /* prcountr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prcountr.c; sourceTree = ""; }; - 1AB25B9D12CA1D7200C67F42 /* prdtoa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prdtoa.c; sourceTree = ""; }; - 1AB25B9E12CA1D7200C67F42 /* prenv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prenv.c; sourceTree = ""; }; - 1AB25B9F12CA1D7200C67F42 /* prerr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prerr.c; sourceTree = ""; }; - 1AB25BA212CA1D7200C67F42 /* prerror.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prerror.c; sourceTree = ""; }; - 1AB25BA312CA1D7200C67F42 /* prerrortable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prerrortable.c; sourceTree = ""; }; - 1AB25BA412CA1D7200C67F42 /* prinit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prinit.c; sourceTree = ""; }; - 1AB25BA512CA1D7200C67F42 /* prinrval.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prinrval.c; sourceTree = ""; }; - 1AB25BA612CA1D7200C67F42 /* pripc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pripc.c; sourceTree = ""; }; - 1AB25BA712CA1D7200C67F42 /* pripcsem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pripcsem.c; sourceTree = ""; }; - 1AB25BA812CA1D7200C67F42 /* prlog2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prlog2.c; sourceTree = ""; }; - 1AB25BA912CA1D7200C67F42 /* prlong.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prlong.c; sourceTree = ""; }; - 1AB25BAA12CA1D7200C67F42 /* prnetdb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prnetdb.c; sourceTree = ""; }; - 1AB25BAB12CA1D7200C67F42 /* prolock.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prolock.c; sourceTree = ""; }; - 1AB25BAC12CA1D7200C67F42 /* prrng.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prrng.c; sourceTree = ""; }; - 1AB25BAD12CA1D7200C67F42 /* prsystem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prsystem.c; sourceTree = ""; }; - 1AB25BAE12CA1D7200C67F42 /* prthinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prthinfo.c; sourceTree = ""; }; - 1AB25BAF12CA1D7200C67F42 /* prtime.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prtime.c; sourceTree = ""; }; - 1AB25BB012CA1D7200C67F42 /* prtpool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prtpool.c; sourceTree = ""; }; - 1AB25BB112CA1D7200C67F42 /* prtrace.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prtrace.c; sourceTree = ""; }; - 1AB25BB512CA1D7200C67F42 /* prvrsion.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prvrsion.c; sourceTree = ""; }; - 1AB25BB912CA1D7200C67F42 /* ptio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ptio.c; sourceTree = ""; }; - 1AB25BBA12CA1D7200C67F42 /* ptmisc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ptmisc.c; sourceTree = ""; }; - 1AB25BBB12CA1D7200C67F42 /* ptsynch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ptsynch.c; sourceTree = ""; }; - 1AB25BBC12CA1D7200C67F42 /* ptthread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ptthread.c; sourceTree = ""; }; - 1AB25BC212CA1D7200C67F42 /* prucpu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prucpu.c; sourceTree = ""; }; - 1AB25BC312CA1D7200C67F42 /* prucv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prucv.c; sourceTree = ""; }; - 1AB25BC412CA1D7200C67F42 /* prulock.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prulock.c; sourceTree = ""; }; - 1AB25BC512CA1D7200C67F42 /* prustack.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prustack.c; sourceTree = ""; }; - 1AB25BC612CA1D7200C67F42 /* pruthr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pruthr.c; sourceTree = ""; }; - 1AB25BC912CA1D7200C67F42 /* prcmon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prcmon.c; sourceTree = ""; }; - 1AB25BCA12CA1D7200C67F42 /* prcthr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prcthr.c; sourceTree = ""; }; - 1AB25BCB12CA1D7200C67F42 /* prdump.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prdump.c; sourceTree = ""; }; - 1AB25BCC12CA1D7200C67F42 /* prmon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prmon.c; sourceTree = ""; }; - 1AB25BCD12CA1D7200C67F42 /* prrwlock.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prrwlock.c; sourceTree = ""; }; - 1AB25BCE12CA1D7200C67F42 /* prsem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prsem.c; sourceTree = ""; }; - 1AB25BCF12CA1D7200C67F42 /* prtpd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prtpd.c; sourceTree = ""; }; - 1AB7750D12CA243C001478BB /* _pr_bld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _pr_bld.h; sourceTree = ""; }; - 1AB7761412CA2F85001478BB /* jsarray.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsarray.cpp; sourceTree = ""; }; - 1AB7762412CA3182001478BB /* jsutil.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsutil.cpp; sourceTree = ""; }; - 1AB7762D12CA33C9001478BB /* jsfun.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsfun.cpp; sourceTree = ""; }; - 1AB7763C12CA3415001478BB /* jsscript.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsscript.cpp; sourceTree = ""; }; - 1AB7764112CA3437001478BB /* jsopcode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsopcode.cpp; sourceTree = ""; }; - 1AB7764912CA34B6001478BB /* jsdbgapi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsdbgapi.cpp; sourceTree = ""; }; - 1AB7764E12CA34D7001478BB /* jscntxt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jscntxt.cpp; sourceTree = ""; }; - 1AB7765412CA3539001478BB /* jsgc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsgc.cpp; sourceTree = ""; }; - 1AB7765812CA3564001478BB /* jsxdrapi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsxdrapi.cpp; sourceTree = ""; }; - 1AB7765B12CA3576001478BB /* json.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = json.cpp; sourceTree = ""; }; - 1AB7765F12CA359A001478BB /* jslock.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jslock.cpp; sourceTree = ""; }; - 1AB7766512CA35CA001478BB /* jsproxy.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsproxy.cpp; sourceTree = ""; }; - 1AB7766912CA3601001478BB /* jsobj.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsobj.cpp; sourceTree = ""; }; - 1AB7766B12CA3606001478BB /* jsinterp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsinterp.cpp; sourceTree = ""; }; - 1AB7767812CA36FB001478BB /* jsiter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsiter.cpp; sourceTree = ""; }; - 1AB7767F12CA3737001478BB /* jsxml.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsxml.cpp; sourceTree = ""; }; - 1AB7768112CA3743001478BB /* jsstr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsstr.cpp; sourceTree = ""; }; - 1AB7768612CA37C9001478BB /* jsatom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsatom.cpp; sourceTree = ""; }; - 1AB7768812CA37CF001478BB /* jsdate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsdate.cpp; sourceTree = ""; }; - 1AB7772212CA4939001478BB /* jsanalyze.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsanalyze.h; sourceTree = ""; }; - 1AB7772312CA4939001478BB /* jsapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsapi.h; sourceTree = ""; }; - 1AB7772412CA4939001478BB /* jsarena.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsarena.h; sourceTree = ""; }; - 1AB7772512CA4939001478BB /* jsarray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsarray.h; sourceTree = ""; }; - 1AB7772612CA4939001478BB /* jsatom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsatom.h; sourceTree = ""; }; - 1AB7772712CA4939001478BB /* jsatominlines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsatominlines.h; sourceTree = ""; }; - 1AB7772812CA4939001478BB /* jsbit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsbit.h; sourceTree = ""; }; - 1AB7772912CA4939001478BB /* jsbool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsbool.h; sourceTree = ""; }; - 1AB7772A12CA4939001478BB /* jsbuiltins.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsbuiltins.h; sourceTree = ""; }; - 1AB7772B12CA4939001478BB /* jscell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jscell.h; sourceTree = ""; }; - 1AB7772C12CA4939001478BB /* jsclist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsclist.h; sourceTree = ""; }; - 1AB7772D12CA493A001478BB /* jsclone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsclone.h; sourceTree = ""; }; - 1AB7772E12CA493A001478BB /* jscntxt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jscntxt.h; sourceTree = ""; }; - 1AB7772F12CA493A001478BB /* jscntxtinlines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jscntxtinlines.h; sourceTree = ""; }; - 1AB7773012CA493A001478BB /* jscompartment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jscompartment.h; sourceTree = ""; }; - 1AB7773112CA493A001478BB /* jscompat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jscompat.h; sourceTree = ""; }; - 1AB7773212CA493A001478BB /* jscpucfg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jscpucfg.h; sourceTree = ""; }; - 1AB7773312CA493A001478BB /* jsdate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsdate.h; sourceTree = ""; }; - 1AB7773412CA493A001478BB /* jsdbgapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsdbgapi.h; sourceTree = ""; }; - 1AB7773512CA493A001478BB /* jsdbgapiinlines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsdbgapiinlines.h; sourceTree = ""; }; - 1AB7773612CA493A001478BB /* jsdhash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsdhash.h; sourceTree = ""; }; - 1AB7773712CA493A001478BB /* jsdtoa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsdtoa.h; sourceTree = ""; }; - 1AB7773812CA493A001478BB /* jsemit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsemit.h; sourceTree = ""; }; - 1AB7773912CA493A001478BB /* jsexn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsexn.h; sourceTree = ""; }; - 1AB7773A12CA493A001478BB /* jsfun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsfun.h; sourceTree = ""; }; - 1AB7773B12CA493A001478BB /* jsfuninlines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsfuninlines.h; sourceTree = ""; }; - 1AB7773C12CA493A001478BB /* jsgc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsgc.h; sourceTree = ""; }; - 1AB7773D12CA493A001478BB /* jsgcchunk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsgcchunk.h; sourceTree = ""; }; - 1AB7773E12CA493A001478BB /* jsgcinlines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsgcinlines.h; sourceTree = ""; }; - 1AB7773F12CA493A001478BB /* jsgcstats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsgcstats.h; sourceTree = ""; }; - 1AB7774012CA493A001478BB /* jshash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jshash.h; sourceTree = ""; }; - 1AB7774112CA493A001478BB /* jshashtable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jshashtable.h; sourceTree = ""; }; - 1AB7774212CA493A001478BB /* jsinterp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsinterp.h; sourceTree = ""; }; - 1AB7774312CA493A001478BB /* jsinterpinlines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsinterpinlines.h; sourceTree = ""; }; - 1AB7774412CA493A001478BB /* jsinttypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsinttypes.h; sourceTree = ""; }; - 1AB7774512CA493A001478BB /* jsiter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsiter.h; sourceTree = ""; }; - 1AB7774612CA493A001478BB /* jslibmath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jslibmath.h; sourceTree = ""; }; - 1AB7774712CA493A001478BB /* jslock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jslock.h; sourceTree = ""; }; - 1AB7774812CA493A001478BB /* jslong.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jslong.h; sourceTree = ""; }; - 1AB7774912CA493A001478BB /* jsmath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsmath.h; sourceTree = ""; }; - 1AB7774A12CA493A001478BB /* jsnativestack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsnativestack.h; sourceTree = ""; }; - 1AB7774B12CA493A001478BB /* jsnum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsnum.h; sourceTree = ""; }; - 1AB7774C12CA493A001478BB /* jsobj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsobj.h; sourceTree = ""; }; - 1AB7774D12CA493A001478BB /* jsobjinlines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsobjinlines.h; sourceTree = ""; }; - 1AB7774E12CA493A001478BB /* json.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = json.h; sourceTree = ""; }; - 1AB7774F12CA493A001478BB /* jsopcode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsopcode.h; sourceTree = ""; }; - 1AB7775012CA493A001478BB /* jsopcodeinlines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsopcodeinlines.h; sourceTree = ""; }; - 1AB7775112CA493A001478BB /* jsotypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsotypes.h; sourceTree = ""; }; - 1AB7775212CA493A001478BB /* jsparse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsparse.h; sourceTree = ""; }; - 1AB7775312CA493A001478BB /* jsprf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsprf.h; sourceTree = ""; }; - 1AB7775412CA493A001478BB /* jsprobes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsprobes.h; sourceTree = ""; }; - 1AB7775512CA493A001478BB /* jspropertycache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jspropertycache.h; sourceTree = ""; }; - 1AB7775612CA493A001478BB /* jspropertycacheinlines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jspropertycacheinlines.h; sourceTree = ""; }; - 1AB7775712CA493A001478BB /* jspropertytree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jspropertytree.h; sourceTree = ""; }; - 1AB7775812CA493A001478BB /* jsproxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsproxy.h; sourceTree = ""; }; - 1AB7775912CA493A001478BB /* jsprvtd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsprvtd.h; sourceTree = ""; }; - 1AB7775A12CA493A001478BB /* jspubtd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jspubtd.h; sourceTree = ""; }; - 1AB7775B12CA493A001478BB /* jsreflect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsreflect.h; sourceTree = ""; }; - 1AB7775C12CA493A001478BB /* jsregexp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsregexp.h; sourceTree = ""; }; - 1AB7775D12CA493A001478BB /* jsregexpinlines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsregexpinlines.h; sourceTree = ""; }; - 1AB7775E12CA493A001478BB /* jsscan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsscan.h; sourceTree = ""; }; - 1AB7775F12CA493A001478BB /* jsscope.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsscope.h; sourceTree = ""; }; - 1AB7776012CA493A001478BB /* jsscopeinlines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsscopeinlines.h; sourceTree = ""; }; - 1AB7776112CA493A001478BB /* jsscript.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsscript.h; sourceTree = ""; }; - 1AB7776212CA493A001478BB /* jsscriptinlines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsscriptinlines.h; sourceTree = ""; }; - 1AB7776312CA493A001478BB /* jsstaticcheck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsstaticcheck.h; sourceTree = ""; }; - 1AB7776412CA493A001478BB /* jsstdint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsstdint.h; sourceTree = ""; }; - 1AB7776512CA493A001478BB /* jsstr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsstr.h; sourceTree = ""; }; - 1AB7776612CA493A001478BB /* jsstrinlines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsstrinlines.h; sourceTree = ""; }; - 1AB7776712CA493A001478BB /* jstl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jstl.h; sourceTree = ""; }; - 1AB7776812CA493A001478BB /* jstracer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jstracer.h; sourceTree = ""; }; - 1AB7776912CA493A001478BB /* jstypedarray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jstypedarray.h; sourceTree = ""; }; - 1AB7776A12CA493A001478BB /* jstypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jstypes.h; sourceTree = ""; }; - 1AB7776B12CA493A001478BB /* jsutil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsutil.h; sourceTree = ""; }; - 1AB7776C12CA493A001478BB /* jsval.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsval.h; sourceTree = ""; }; - 1AB7776D12CA493A001478BB /* jsvalue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsvalue.h; sourceTree = ""; }; - 1AB7776E12CA493A001478BB /* jsvector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsvector.h; sourceTree = ""; }; - 1AB7776F12CA493A001478BB /* jsversion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsversion.h; sourceTree = ""; }; - 1AB7777012CA493A001478BB /* jswin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jswin.h; sourceTree = ""; }; - 1AB7777112CA493A001478BB /* jswrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jswrapper.h; sourceTree = ""; }; - 1AB7777212CA493A001478BB /* jsxdrapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsxdrapi.h; sourceTree = ""; }; - 1AB7777312CA493A001478BB /* jsxml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsxml.h; sourceTree = ""; }; - 1AB7777412CA493A001478BB /* prmjtime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prmjtime.h; sourceTree = ""; }; - 1AB7777512CA493A001478BB /* resource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resource.h; sourceTree = ""; }; - 1AB7781712CA51B9001478BB /* jsscope.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsscope.cpp; sourceTree = ""; }; - 1AB7781B12CA51CE001478BB /* jsarena.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsarena.cpp; sourceTree = ""; }; - 1AB7781D12CA51E6001478BB /* jshash.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jshash.cpp; sourceTree = ""; }; - 1AB7782112CA5220001478BB /* jsscan.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsscan.cpp; sourceTree = ""; }; - 1AC16B5912F0905200907218 /* jsoplengen */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = jsoplengen; sourceTree = BUILT_PRODUCTS_DIR; }; - 1AC16B6012F0907000907218 /* jsoplengen.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = jsoplengen.cpp; path = ../../mozilla/js/src/jsoplengen.cpp; sourceTree = SOURCE_ROOT; }; - 1AC16CBF12F0943F00907218 /* jskwgen */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = jskwgen; sourceTree = BUILT_PRODUCTS_DIR; }; - 1AC16CC212F0945000907218 /* jskwgen.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = jskwgen.cpp; path = ../../mozilla/js/src/jskwgen.cpp; sourceTree = SOURCE_ROOT; }; - 1AD05E0812CD189100704F1D /* jsapi-tests */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "jsapi-tests"; sourceTree = BUILT_PRODUCTS_DIR; }; - 1AD05E0F12CD18B100704F1D /* selfTest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = selfTest.cpp; sourceTree = ""; }; - 1AD05E1012CD18B100704F1D /* testBug604087.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testBug604087.cpp; sourceTree = ""; }; - 1AD05E1112CD18B100704F1D /* testClassGetter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testClassGetter.cpp; sourceTree = ""; }; - 1AD05E1212CD18B100704F1D /* testCloneScript.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testCloneScript.cpp; sourceTree = ""; }; - 1AD05E1312CD18B100704F1D /* testConservativeGC.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testConservativeGC.cpp; sourceTree = ""; }; - 1AD05E1412CD18B100704F1D /* testContexts.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testContexts.cpp; sourceTree = ""; }; - 1AD05E1512CD18B100704F1D /* testDebugger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testDebugger.cpp; sourceTree = ""; }; - 1AD05E1612CD18B100704F1D /* testDeepFreeze.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testDeepFreeze.cpp; sourceTree = ""; }; - 1AD05E1712CD18B100704F1D /* testDefineGetterSetterNonEnumerable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testDefineGetterSetterNonEnumerable.cpp; sourceTree = ""; }; - 1AD05E1812CD18B100704F1D /* testDefineProperty.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testDefineProperty.cpp; sourceTree = ""; }; - 1AD05E1912CD18B100704F1D /* testExtendedEq.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testExtendedEq.cpp; sourceTree = ""; }; - 1AD05E1A12CD18B100704F1D /* testFuncCallback.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testFuncCallback.cpp; sourceTree = ""; }; - 1AD05E1B12CD18B100704F1D /* testGCChunkAlloc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testGCChunkAlloc.cpp; sourceTree = ""; }; - 1AD05E1C12CD18B100704F1D /* testGetPropertyDefault.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testGetPropertyDefault.cpp; sourceTree = ""; }; - 1AD05E1D12CD18B100704F1D /* testIntString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testIntString.cpp; sourceTree = ""; }; - 1AD05E1E12CD18B100704F1D /* testIsAboutToBeFinalized.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testIsAboutToBeFinalized.cpp; sourceTree = ""; }; - 1AD05E1F12CD18B100704F1D /* testLookup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testLookup.cpp; sourceTree = ""; }; - 1AD05E2012CD18B100704F1D /* testNewObject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testNewObject.cpp; sourceTree = ""; }; - 1AD05E2112CD18B100704F1D /* testOps.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testOps.cpp; sourceTree = ""; }; - 1AD05E2212CD18B100704F1D /* testPropCache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testPropCache.cpp; sourceTree = ""; }; - 1AD05E2312CD18B100704F1D /* tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tests.cpp; sourceTree = ""; }; - 1AD05E2412CD18B100704F1D /* tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tests.h; sourceTree = ""; }; - 1AD05E2512CD18B100704F1D /* testSameValue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testSameValue.cpp; sourceTree = ""; }; - 1AD05E2612CD18B100704F1D /* testScriptObject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testScriptObject.cpp; sourceTree = ""; }; - 1AD05E2812CD18B100704F1D /* testThreadGC.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testThreadGC.cpp; sourceTree = ""; }; - 1AD05E2912CD18B100704F1D /* testThreads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testThreads.cpp; sourceTree = ""; }; - 1AD05E2A12CD18B100704F1D /* testTrap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testTrap.cpp; sourceTree = ""; }; - 1AD05E2B12CD18B100704F1D /* testUTF8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testUTF8.cpp; sourceTree = ""; }; - 1AD05E2C12CD18B100704F1D /* testVersion.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testVersion.cpp; sourceTree = ""; }; - 1AD05E2D12CD18B100704F1D /* testXDR.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testXDR.cpp; sourceTree = ""; }; - 1AD05EE512CD208D00704F1D /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; }; - 1AD05EEB12CD209C00704F1D /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - 1AD05F1312CD224100704F1D /* jsapitests-oolite-shim.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "jsapitests-oolite-shim.m"; sourceTree = ""; }; - 1AD05F7B12CD274E00704F1D /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = System/Library/Frameworks/CoreServices.framework; sourceTree = SDKROOT; }; - 1AD5A7A412D38E8400B62503 /* RegexCompiler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RegexCompiler.cpp; sourceTree = ""; }; - 1AD5A7A512D38E8400B62503 /* RegexCompiler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegexCompiler.h; sourceTree = ""; }; - 1AEA1FBB12CB97A600EC0F43 /* jstracer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jstracer.cpp; sourceTree = ""; }; - 1AEA1FBC12CB97B500EC0F43 /* jsprobes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsprobes.cpp; sourceTree = ""; }; - 1AEA1FBF12CB981C00EC0F43 /* jsanalyze.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsanalyze.cpp; sourceTree = ""; }; - 1AEA1FC012CB982100EC0F43 /* dtoa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dtoa.c; sourceTree = ""; }; - 1AEA206312CB9C2C00EC0F43 /* pr-oolite-prefix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "pr-oolite-prefix.h"; sourceTree = ""; }; - 1AEA207F12CB9CE800EC0F43 /* os_Darwin_universal.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = os_Darwin_universal.s; sourceTree = ""; }; - 1AEA209112CB9E8600EC0F43 /* pr-oolite-shim.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "pr-oolite-shim.m"; sourceTree = ""; }; - 1AEA214F12CBBC1500EC0F43 /* Writer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Writer.cpp; sourceTree = ""; }; - 1AEA215012CBBC1500EC0F43 /* Writer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Writer.h; sourceTree = ""; }; - 1AEA215612CBBC4100EC0F43 /* nanojit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nanojit.h; sourceTree = ""; }; - 1AEA216112CBBCAD00EC0F43 /* avmplus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = avmplus.h; sourceTree = ""; }; - 1AEA216312CBBCC800EC0F43 /* njconfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = njconfig.h; sourceTree = ""; }; - 1AEA216412CBBCC800EC0F43 /* njcpudetect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = njcpudetect.h; sourceTree = ""; }; - 1AEA219212CBC26100EC0F43 /* LIR.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LIR.cpp; sourceTree = ""; }; - 1AEA219412CBC26700EC0F43 /* LIR.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LIR.h; sourceTree = ""; }; - 1AEA21C212CBC5AB00EC0F43 /* CodeAlloc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CodeAlloc.cpp; sourceTree = ""; }; - 1AEA21C312CBC5AB00EC0F43 /* CodeAlloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CodeAlloc.h; sourceTree = ""; }; - 1AEA21C612CBC5C400EC0F43 /* Fragmento.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Fragmento.cpp; sourceTree = ""; }; - 1AEA21C712CBC5C400EC0F43 /* Fragmento.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Fragmento.h; sourceTree = ""; }; - 1AEA21CC12CBC5D600EC0F43 /* VMPI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = VMPI.cpp; sourceTree = ""; }; - 1AEA21CD12CBC5D600EC0F43 /* VMPI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VMPI.h; sourceTree = ""; }; - 1AEA21D412CBC5F100EC0F43 /* Assembler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Assembler.cpp; sourceTree = ""; }; - 1AEA21D512CBC5F100EC0F43 /* Assembler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Assembler.h; sourceTree = ""; }; - 1AEA21DD12CBC63100EC0F43 /* NativeUniversal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NativeUniversal.cpp; sourceTree = ""; }; - 1AEA21E012CBC69E00EC0F43 /* Nativei386.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Nativei386.cpp; sourceTree = ""; }; - 1AEA21E112CBC69E00EC0F43 /* NativePPC.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NativePPC.cpp; sourceTree = ""; }; - 1AEA21E212CBC69E00EC0F43 /* NativeX64.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NativeX64.cpp; sourceTree = ""; }; - 1AEA21E312CBC6AA00EC0F43 /* Native.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Native.h; sourceTree = ""; }; - 1AEA21E412CBC6AA00EC0F43 /* NativeCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NativeCommon.h; sourceTree = ""; }; - 1AEA21E512CBC6AA00EC0F43 /* Nativei386.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Nativei386.h; sourceTree = ""; }; - 1AEA21E612CBC6AA00EC0F43 /* NativePPC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NativePPC.h; sourceTree = ""; }; - 1AEA21E712CBC6AA00EC0F43 /* NativeX64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NativeX64.h; sourceTree = ""; }; - 1AEA21F712CBC75F00EC0F43 /* avmplus.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = avmplus.cpp; sourceTree = ""; }; - 1AEA21FD12CBC78000EC0F43 /* njconfig.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = njconfig.cpp; sourceTree = ""; }; - 1AEA220112CBC78D00EC0F43 /* RegAlloc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RegAlloc.cpp; sourceTree = ""; }; - 1AEA220312CBC79600EC0F43 /* RegAlloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegAlloc.h; sourceTree = ""; }; - 1AEA220712CBC7A500EC0F43 /* Allocator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Allocator.cpp; sourceTree = ""; }; - 1AEA220912CBC7A800EC0F43 /* Allocator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Allocator.h; sourceTree = ""; }; - 1AEA220D12CBC7BF00EC0F43 /* Containers.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Containers.cpp; sourceTree = ""; }; - 1AEA220F12CBC7C200EC0F43 /* Containers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Containers.h; sourceTree = ""; }; - 1AEA22DE12CBECDF00EC0F43 /* AbstractMacroAssembler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AbstractMacroAssembler.h; sourceTree = ""; }; - 1AEA22E212CBECDF00EC0F43 /* AssemblerBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AssemblerBuffer.h; sourceTree = ""; }; - 1AEA22E312CBECDF00EC0F43 /* AssemblerBufferWithConstantPool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AssemblerBufferWithConstantPool.h; sourceTree = ""; }; - 1AEA22E412CBECDF00EC0F43 /* CodeLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CodeLocation.h; sourceTree = ""; }; - 1AEA22E512CBECDF00EC0F43 /* LinkBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LinkBuffer.h; sourceTree = ""; }; - 1AEA22E612CBECDF00EC0F43 /* MacroAssembler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacroAssembler.h; sourceTree = ""; }; - 1AEA22EA12CBECDF00EC0F43 /* MacroAssemblerCodeRef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacroAssemblerCodeRef.h; sourceTree = ""; }; - 1AEA22EB12CBECDF00EC0F43 /* MacroAssemblerX86.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacroAssemblerX86.h; sourceTree = ""; }; - 1AEA22EC12CBECDF00EC0F43 /* MacroAssemblerX86_64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacroAssemblerX86_64.h; sourceTree = ""; }; - 1AEA22ED12CBECDF00EC0F43 /* MacroAssemblerX86Common.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MacroAssemblerX86Common.cpp; sourceTree = ""; }; - 1AEA22EE12CBECDF00EC0F43 /* MacroAssemblerX86Common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacroAssemblerX86Common.h; sourceTree = ""; }; - 1AEA22EF12CBECDF00EC0F43 /* RepatchBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RepatchBuffer.h; sourceTree = ""; }; - 1AEA22F012CBECDF00EC0F43 /* X86Assembler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = X86Assembler.h; sourceTree = ""; }; - 1AEA22F212CBECDF00EC0F43 /* ExecutableAllocator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ExecutableAllocator.cpp; sourceTree = ""; }; - 1AEA22F312CBECDF00EC0F43 /* ExecutableAllocator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExecutableAllocator.h; sourceTree = ""; }; - 1AEA22F412CBECDF00EC0F43 /* ExecutableAllocatorPosix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ExecutableAllocatorPosix.cpp; sourceTree = ""; }; - 1AEA22F512CBECDF00EC0F43 /* ExecutableAllocatorSymbian.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ExecutableAllocatorSymbian.cpp; sourceTree = ""; }; - 1AEA22F612CBECDF00EC0F43 /* ExecutableAllocatorWin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ExecutableAllocatorWin.cpp; sourceTree = ""; }; - 1AEA22F812CBECDF00EC0F43 /* MocoStubs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MocoStubs.h; sourceTree = ""; }; - 1AEA22FA12CBECDF00EC0F43 /* Assertions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Assertions.cpp; sourceTree = ""; }; - 1AEA22FB12CBECDF00EC0F43 /* Assertions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Assertions.h; sourceTree = ""; }; - 1AEA22FC12CBECDF00EC0F43 /* Platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Platform.h; sourceTree = ""; }; - 1AEA22FD12CBECDF00EC0F43 /* SegmentedVector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SegmentedVector.h; sourceTree = ""; }; - 1AEA22FE12CBECDF00EC0F43 /* VMTags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VMTags.h; sourceTree = ""; }; - 1AEA231A12CBF6A300EC0F43 /* BaseAssembler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseAssembler.h; sourceTree = ""; }; - 1AEA231B12CBF6A300EC0F43 /* BaseCompiler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseCompiler.h; sourceTree = ""; }; - 1AEA231C12CBF6A300EC0F43 /* CodeGenIncludes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CodeGenIncludes.h; sourceTree = ""; }; - 1AEA231D12CBF6A300EC0F43 /* Compiler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Compiler.cpp; sourceTree = ""; }; - 1AEA231E12CBF6A300EC0F43 /* Compiler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Compiler.h; sourceTree = ""; }; - 1AEA231F12CBF6A300EC0F43 /* FastArithmetic.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FastArithmetic.cpp; sourceTree = ""; }; - 1AEA232012CBF6A300EC0F43 /* FastOps.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FastOps.cpp; sourceTree = ""; }; - 1AEA232112CBF6A300EC0F43 /* FrameEntry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrameEntry.h; sourceTree = ""; }; - 1AEA232212CBF6A300EC0F43 /* FrameState-inl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FrameState-inl.h"; sourceTree = ""; }; - 1AEA232312CBF6A300EC0F43 /* FrameState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FrameState.cpp; sourceTree = ""; }; - 1AEA232412CBF6A300EC0F43 /* FrameState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FrameState.h; sourceTree = ""; }; - 1AEA232512CBF6A300EC0F43 /* ImmutableSync.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ImmutableSync.cpp; sourceTree = ""; }; - 1AEA232612CBF6A300EC0F43 /* ImmutableSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImmutableSync.h; sourceTree = ""; }; - 1AEA232712CBF6A300EC0F43 /* InlineFrameAssembler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InlineFrameAssembler.h; sourceTree = ""; }; - 1AEA232812CBF6A300EC0F43 /* InvokeHelpers.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InvokeHelpers.cpp; sourceTree = ""; }; - 1AEA232912CBF6A300EC0F43 /* Logging.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Logging.cpp; sourceTree = ""; }; - 1AEA232A12CBF6A300EC0F43 /* Logging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Logging.h; sourceTree = ""; }; - 1AEA232B12CBF6A300EC0F43 /* MachineRegs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MachineRegs.h; sourceTree = ""; }; - 1AEA232C12CBF6A300EC0F43 /* MethodJIT.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MethodJIT.cpp; sourceTree = ""; }; - 1AEA232D12CBF6A300EC0F43 /* MethodJIT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MethodJIT.h; sourceTree = ""; }; - 1AEA232E12CBF6A300EC0F43 /* MonoIC.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MonoIC.cpp; sourceTree = ""; }; - 1AEA232F12CBF6A300EC0F43 /* MonoIC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MonoIC.h; sourceTree = ""; }; - 1AEA233012CBF6A300EC0F43 /* NunboxAssembler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NunboxAssembler.h; sourceTree = ""; }; - 1AEA233112CBF6A300EC0F43 /* PolyIC.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PolyIC.cpp; sourceTree = ""; }; - 1AEA233212CBF6A300EC0F43 /* PolyIC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PolyIC.h; sourceTree = ""; }; - 1AEA233312CBF6A300EC0F43 /* PunboxAssembler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PunboxAssembler.h; sourceTree = ""; }; - 1AEA233412CBF6A300EC0F43 /* RematInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RematInfo.h; sourceTree = ""; }; - 1AEA233512CBF6A300EC0F43 /* Retcon.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Retcon.cpp; sourceTree = ""; }; - 1AEA233612CBF6A300EC0F43 /* Retcon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Retcon.h; sourceTree = ""; }; - 1AEA233712CBF6A300EC0F43 /* StubCalls-inl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "StubCalls-inl.h"; sourceTree = ""; }; - 1AEA233812CBF6A300EC0F43 /* StubCalls.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StubCalls.cpp; sourceTree = ""; }; - 1AEA233912CBF6A300EC0F43 /* StubCalls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StubCalls.h; sourceTree = ""; }; - 1AEA233A12CBF6A300EC0F43 /* StubCompiler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StubCompiler.cpp; sourceTree = ""; }; - 1AEA233B12CBF6A300EC0F43 /* StubCompiler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StubCompiler.h; sourceTree = ""; }; - 1AEA233C12CBF6A300EC0F43 /* TrampolineCompiler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TrampolineCompiler.cpp; sourceTree = ""; }; - 1AEA233D12CBF6A300EC0F43 /* TrampolineCompiler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TrampolineCompiler.h; sourceTree = ""; }; - 1AEA23D412CC003800EC0F43 /* js-oolite-shim.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "js-oolite-shim.cpp"; sourceTree = ""; }; - D2AAC046055464E500DB518D /* libjs_for_oolite.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libjs_for_oolite.a; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 1AB25AC512CA1CB100C67F42 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1AC16B5712F0905200907218 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1AC16CBA12F0943F00907218 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1AD05E0612CD189100704F1D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 1AD05E4E12CD18C900704F1D /* libjs_for_oolite.a in Frameworks */, - 1AD05E6C12CD1ABE00704F1D /* libnspr4_for_oolite.a in Frameworks */, - 1AD05EE612CD208D00704F1D /* CoreFoundation.framework in Frameworks */, - 1AD05EEC12CD209C00704F1D /* Foundation.framework in Frameworks */, - 1AD05F7C12CD274E00704F1D /* CoreServices.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D289987405E68DCB004EDB86 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 08FB7794FE84155DC02AAC07 /* libjs */ = { - isa = PBXGroup; - children = ( - 1AB25A6712CA12BA00C67F42 /* oolite-targets.xcconfig */, - 1AC16B5E12F0905D00907218 /* autogen */, - 1AEA214D12CBBBD600EC0F43 /* Oolite-specific hacks */, - 1AB25A7712CA178000C67F42 /* js */, - 1AB25ACE12CA1D7100C67F42 /* nspr */, - 1AD05E0D12CD189700704F1D /* jsapi-tests */, - 1AB674ADFE9D54B511CA2CBB /* Products */, - 1AD05EE512CD208D00704F1D /* CoreFoundation.framework */, - 1AD05EEB12CD209C00704F1D /* Foundation.framework */, - 1AD05F7B12CD274E00704F1D /* CoreServices.framework */, - ); - name = libjs; - sourceTree = ""; - }; - 1A06F07B12CA560A00FB681A /* tables */ = { - isa = PBXGroup; - children = ( - 1A06F07C12CA561C00FB681A /* jskeyword.tbl */, - 1A06F07D12CA561C00FB681A /* jsopcode.tbl */, - 1A06F07E12CA561C00FB681A /* jsproto.tbl */, - 1A06F07F12CA561C00FB681A /* jsreops.tbl */, - ); - name = tables; - sourceTree = ""; - }; - 1A06F16512CA653E00FB681A /* yarr */ = { - isa = PBXGroup; - children = ( - 1A06F18012CA692500FB681A /* pcre */, - 1A06F16612CA655900FB681A /* yarr */, - ); - path = yarr; - sourceTree = ""; - }; - 1A06F16612CA655900FB681A /* yarr */ = { - isa = PBXGroup; - children = ( - 1A06F16912CA656F00FB681A /* RegexJIT.h */, - 1A06F16712CA656900FB681A /* RegexJIT.cpp */, - 1AD5A7A512D38E8400B62503 /* RegexCompiler.h */, - 1AD5A7A412D38E8400B62503 /* RegexCompiler.cpp */, - ); - path = yarr; - sourceTree = ""; - }; - 1A06F18012CA692500FB681A /* pcre */ = { - isa = PBXGroup; - children = ( - 1A06F18112CA693B00FB681A /* pcre_compile.cpp */, - 1A06F18312CA693F00FB681A /* pcre_exec.cpp */, - 1A06F19812CA6A5A00FB681A /* pcre_tables.cpp */, - 1A06F19E12CA6A7400FB681A /* pcre_ucp_searchfuncs.cpp */, - 1A06F19412CA6A4C00FB681A /* pcre_xclass.cpp */, - ); - path = pcre; - sourceTree = ""; - }; - 1A06F1AB12CA6B4A00FB681A /* methodjit */ = { - isa = PBXGroup; - children = ( - 1AEA231A12CBF6A300EC0F43 /* BaseAssembler.h */, - 1AEA231B12CBF6A300EC0F43 /* BaseCompiler.h */, - 1AEA231C12CBF6A300EC0F43 /* CodeGenIncludes.h */, - 1AEA231E12CBF6A300EC0F43 /* Compiler.h */, - 1AEA231D12CBF6A300EC0F43 /* Compiler.cpp */, - 1AEA231F12CBF6A300EC0F43 /* FastArithmetic.cpp */, - 1AEA232012CBF6A300EC0F43 /* FastOps.cpp */, - 1AEA232112CBF6A300EC0F43 /* FrameEntry.h */, - 1AEA232412CBF6A300EC0F43 /* FrameState.h */, - 1AEA232212CBF6A300EC0F43 /* FrameState-inl.h */, - 1AEA232312CBF6A300EC0F43 /* FrameState.cpp */, - 1AEA232612CBF6A300EC0F43 /* ImmutableSync.h */, - 1AEA232512CBF6A300EC0F43 /* ImmutableSync.cpp */, - 1AEA232712CBF6A300EC0F43 /* InlineFrameAssembler.h */, - 1AEA232812CBF6A300EC0F43 /* InvokeHelpers.cpp */, - 1AEA232A12CBF6A300EC0F43 /* Logging.h */, - 1AEA232912CBF6A300EC0F43 /* Logging.cpp */, - 1AEA232B12CBF6A300EC0F43 /* MachineRegs.h */, - 1AEA232D12CBF6A300EC0F43 /* MethodJIT.h */, - 1AEA232C12CBF6A300EC0F43 /* MethodJIT.cpp */, - 1AEA232F12CBF6A300EC0F43 /* MonoIC.h */, - 1AEA232E12CBF6A300EC0F43 /* MonoIC.cpp */, - 1AEA233012CBF6A300EC0F43 /* NunboxAssembler.h */, - 1AEA233212CBF6A300EC0F43 /* PolyIC.h */, - 1AEA233112CBF6A300EC0F43 /* PolyIC.cpp */, - 1AEA233312CBF6A300EC0F43 /* PunboxAssembler.h */, - 1AEA233412CBF6A300EC0F43 /* RematInfo.h */, - 1AEA233612CBF6A300EC0F43 /* Retcon.h */, - 1AEA233512CBF6A300EC0F43 /* Retcon.cpp */, - 1AEA233912CBF6A300EC0F43 /* StubCalls.h */, - 1AEA233712CBF6A300EC0F43 /* StubCalls-inl.h */, - 1AEA233812CBF6A300EC0F43 /* StubCalls.cpp */, - 1AEA233B12CBF6A300EC0F43 /* StubCompiler.h */, - 1AEA233A12CBF6A300EC0F43 /* StubCompiler.cpp */, - 1AEA233D12CBF6A300EC0F43 /* TrampolineCompiler.h */, - 1AEA233C12CBF6A300EC0F43 /* TrampolineCompiler.cpp */, - ); - path = methodjit; - sourceTree = ""; - }; - 1A06F1B212CA6B7500FB681A /* v8-dtoa */ = { - isa = PBXGroup; - children = ( - 1A06F1D112CA6C1800FB681A /* checks.cc */, - 1A06F1B712CA6B8600FB681A /* conversions.cc */, - 1A06F1C912CA6BD100FB681A /* diy-fp.cc */, - 1A06F1C512CA6BBC00FB681A /* fast-dtoa.cc */, - 1A06F1CB12CA6BDB00FB681A /* platform.cc */, - 1A06F1BB12CA6B9C00FB681A /* utils.cc */, - 1A06F1BF12CA6BAB00FB681A /* v8-dtoa.cc */, - ); - path = "v8-dtoa"; - sourceTree = ""; - }; - 1AB25A7712CA178000C67F42 /* js */ = { - isa = PBXGroup; - children = ( - 1AEA22DC12CBECC400EC0F43 /* assembler */, - 1AB7772112CA4931001478BB /* headers */, - 1A06F1AB12CA6B4A00FB681A /* methodjit */, - 1AEA215512CBBC2500EC0F43 /* nanojit */, - 1A06F07B12CA560A00FB681A /* tables */, - 1AEA214E12CBBC1500EC0F43 /* tracejit */, - 1A06F1B212CA6B7500FB681A /* v8-dtoa */, - 1A06F16512CA653E00FB681A /* yarr */, - 1AEA1FC012CB982100EC0F43 /* dtoa.c */, - 1AEA1FBF12CB981C00EC0F43 /* jsanalyze.cpp */, - 1AB25AA612CA1B6E00C67F42 /* jsapi.cpp */, - 1AB7781B12CA51CE001478BB /* jsarena.cpp */, - 1AB7761412CA2F85001478BB /* jsarray.cpp */, - 1AB7768612CA37C9001478BB /* jsatom.cpp */, - 1A06F0DC12CA5A4F00FB681A /* jsbool.cpp */, - 1A06F0DE12CA5A6900FB681A /* jsbuiltins.cpp */, - 1A63DE9012CA9C5C00508CDB /* jsclone.cpp */, - 1AB7764E12CA34D7001478BB /* jscntxt.cpp */, - 1A06F14512CA63C200FB681A /* jscompartment.cpp */, - 1AB7768812CA37CF001478BB /* jsdate.cpp */, - 1AB7764912CA34B6001478BB /* jsdbgapi.cpp */, - 1A06F0D812CA5A1900FB681A /* jsdhash.cpp */, - 1A06F11D12CA5CAE00FB681A /* jsdtoa.cpp */, - 1A06F10112CA5C2700FB681A /* jsemit.cpp */, - 1A06F12112CA601E00FB681A /* jsexn.cpp */, - 1AB7762D12CA33C9001478BB /* jsfun.cpp */, - 1AB7765412CA3539001478BB /* jsgc.cpp */, - 1A06F16112CA651100FB681A /* jsgcchunk.cpp */, - 1A06F13812CA62C300FB681A /* jsgcstats.cpp */, - 1AB7781D12CA51E6001478BB /* jshash.cpp */, - 1AB7766B12CA3606001478BB /* jsinterp.cpp */, - 1A06F0EF12CA5B3400FB681A /* jsinvoke.cpp */, - 1AB7767812CA36FB001478BB /* jsiter.cpp */, - 1AB7765F12CA359A001478BB /* jslock.cpp */, - 1A06F0F612CA5BC200FB681A /* jslog2.cpp */, - 1A06F14912CA63E700FB681A /* jsmath.cpp */, - 1A06F13A12CA62DD00FB681A /* jsnativestack.cpp */, - 1A06F0D212CA59CF00FB681A /* jsnum.cpp */, - 1AB7766912CA3601001478BB /* jsobj.cpp */, - 1AB7765B12CA3576001478BB /* json.cpp */, - 1AB7764112CA3437001478BB /* jsopcode.cpp */, - 1A06F0D012CA59B300FB681A /* jsparse.cpp */, - 1A06F15112CA646E00FB681A /* jsprf.cpp */, - 1AEA1FBC12CB97B500EC0F43 /* jsprobes.cpp */, - 1A06F15D12CA64EF00FB681A /* jspropertycache.cpp */, - 1A06F0CE12CA59A400FB681A /* jspropertytree.cpp */, - 1AB7766512CA35CA001478BB /* jsproxy.cpp */, - 1A06F14D12CA643600FB681A /* jsreflect.cpp */, - 1A06F0E612CA5AC800FB681A /* jsregexp.cpp */, - 1AB7782112CA5220001478BB /* jsscan.cpp */, - 1AB7781712CA51B9001478BB /* jsscope.cpp */, - 1AB7763C12CA3415001478BB /* jsscript.cpp */, - 1AB7768112CA3743001478BB /* jsstr.cpp */, - 1AEA1FBB12CB97A600EC0F43 /* jstracer.cpp */, - 1A06F0FB12CA5C0E00FB681A /* jstypedarray.cpp */, - 1A06F15512CA64AB00FB681A /* jswrapper.cpp */, - 1AB7765812CA3564001478BB /* jsxdrapi.cpp */, - 1AB7767F12CA3737001478BB /* jsxml.cpp */, - 1A06F15912CA64D000FB681A /* prmjtime.cpp */, - ); - name = js; - path = ../../mozilla/js/src; - sourceTree = ""; - }; - 1AB25ACE12CA1D7100C67F42 /* nspr */ = { - isa = PBXGroup; - children = ( - 1AB25ADB12CA1D7200C67F42 /* cplus */, - 1AB25AFE12CA1D7200C67F42 /* io */, - 1AB25B1112CA1D7200C67F42 /* linking */, - 1AB25B1612CA1D7200C67F42 /* malloc */, - 1AB25B1B12CA1D7200C67F42 /* md */, - 1AB25B8E12CA1D7200C67F42 /* memory */, - 1AB25B9412CA1D7200C67F42 /* misc */, - 1AB25BB512CA1D7200C67F42 /* prvrsion.c */, - 1AB25BBD12CA1D7200C67F42 /* threads */, - 1AB25BB612CA1D7200C67F42 /* pthreads */, - 1AB25AD012CA1D7100C67F42 /* bthreads */, - ); - name = nspr; - path = ../../mozilla/nsprpub/pr/src; - sourceTree = SOURCE_ROOT; - }; - 1AB25AD012CA1D7100C67F42 /* bthreads */ = { - isa = PBXGroup; - children = ( - 1AB25AD312CA1D7200C67F42 /* btcvar.c */, - 1AB25AD412CA1D7200C67F42 /* btlocks.c */, - 1AB25AD512CA1D7200C67F42 /* btmisc.c */, - 1AB25AD612CA1D7200C67F42 /* btmon.c */, - 1AB25AD712CA1D7200C67F42 /* btsem.c */, - 1AB25AD812CA1D7200C67F42 /* btthread.c */, - ); - path = bthreads; - sourceTree = ""; - }; - 1AB25ADB12CA1D7200C67F42 /* cplus */ = { - isa = PBXGroup; - children = ( - 1AB25ADE12CA1D7200C67F42 /* rcascii.h */, - 1AB25ADF12CA1D7200C67F42 /* rcbase.cpp */, - 1AB25AE012CA1D7200C67F42 /* rcbase.h */, - 1AB25AE112CA1D7200C67F42 /* rccv.cpp */, - 1AB25AE212CA1D7200C67F42 /* rccv.h */, - 1AB25AE312CA1D7200C67F42 /* rcfileio.cpp */, - 1AB25AE412CA1D7200C67F42 /* rcfileio.h */, - 1AB25AE512CA1D7200C67F42 /* rcinrval.cpp */, - 1AB25AE612CA1D7200C67F42 /* rcinrval.h */, - 1AB25AE712CA1D7200C67F42 /* rcio.cpp */, - 1AB25AE812CA1D7200C67F42 /* rcio.h */, - 1AB25AE912CA1D7200C67F42 /* rclock.cpp */, - 1AB25AEA12CA1D7200C67F42 /* rclock.h */, - 1AB25AEB12CA1D7200C67F42 /* rcmon.h */, - 1AB25AEC12CA1D7200C67F42 /* rcnetdb.cpp */, - 1AB25AED12CA1D7200C67F42 /* rcnetdb.h */, - 1AB25AEE12CA1D7200C67F42 /* rcnetio.cpp */, - 1AB25AEF12CA1D7200C67F42 /* rcnetio.h */, - 1AB25AF012CA1D7200C67F42 /* rcthread.cpp */, - 1AB25AF112CA1D7200C67F42 /* rcthread.h */, - 1AB25AF212CA1D7200C67F42 /* rctime.cpp */, - 1AB25AF312CA1D7200C67F42 /* rctime.h */, - ); - path = cplus; - sourceTree = ""; - }; - 1AB25AFE12CA1D7200C67F42 /* io */ = { - isa = PBXGroup; - children = ( - 1AB25B0112CA1D7200C67F42 /* prdir.c */, - 1AB25B0212CA1D7200C67F42 /* prfdcach.c */, - 1AB25B0312CA1D7200C67F42 /* prfile.c */, - 1AB25B0412CA1D7200C67F42 /* prio.c */, - 1AB25B0512CA1D7200C67F42 /* priometh.c */, - 1AB25B0612CA1D7200C67F42 /* pripv6.c */, - 1AB25B0712CA1D7200C67F42 /* prlayer.c */, - 1AB25B0812CA1D7200C67F42 /* prlog.c */, - 1AB25B0912CA1D7200C67F42 /* prmapopt.c */, - 1AB25B0A12CA1D7200C67F42 /* prmmap.c */, - 1AB25B0B12CA1D7200C67F42 /* prmwait.c */, - 1AB25B0C12CA1D7200C67F42 /* prpolevt.c */, - 1AB25B0D12CA1D7200C67F42 /* prprf.c */, - 1AB25B0E12CA1D7200C67F42 /* prscanf.c */, - 1AB25B0F12CA1D7200C67F42 /* prsocket.c */, - 1AB25B1012CA1D7200C67F42 /* prstdio.c */, - ); - path = io; - sourceTree = ""; - }; - 1AB25B1112CA1D7200C67F42 /* linking */ = { - isa = PBXGroup; - children = ( - 1AB25B1412CA1D7200C67F42 /* prlink.c */, - ); - path = linking; - sourceTree = ""; - }; - 1AB25B1612CA1D7200C67F42 /* malloc */ = { - isa = PBXGroup; - children = ( - 1AB25B1912CA1D7200C67F42 /* prmalloc.c */, - 1AB25B1A12CA1D7200C67F42 /* prmem.c */, - ); - path = malloc; - sourceTree = ""; - }; - 1AB25B1B12CA1D7200C67F42 /* md */ = { - isa = PBXGroup; - children = ( - 1AB25B4012CA1D7200C67F42 /* prosdep.c */, - 1AB25B4112CA1D7200C67F42 /* unix */, - ); - path = md; - sourceTree = ""; - }; - 1AB25B4112CA1D7200C67F42 /* unix */ = { - isa = PBXGroup; - children = ( - 1AB25B4312CA1D7200C67F42 /* aix.c */, - 1AB25B4412CA1D7200C67F42 /* aixwrap.c */, - 1AB25B4512CA1D7200C67F42 /* bsdi.c */, - 1AB25B4612CA1D7200C67F42 /* darwin.c */, - 1AB25B4712CA1D7200C67F42 /* dgux.c */, - 1AB25B4812CA1D7200C67F42 /* freebsd.c */, - 1AB25B4912CA1D7200C67F42 /* hpux.c */, - 1AB25B4A12CA1D7200C67F42 /* irix.c */, - 1AB25B4B12CA1D7200C67F42 /* linux.c */, - 1AB25B4D12CA1D7200C67F42 /* ncr.c */, - 1AB25B4E12CA1D7200C67F42 /* nec.c */, - 1AB25B4F12CA1D7200C67F42 /* netbsd.c */, - 1AB25B5012CA1D7200C67F42 /* nextstep.c */, - 1AB25B5112CA1D7200C67F42 /* nto.c */, - 1AB25B5312CA1D7200C67F42 /* openbsd.c */, - 1AB25B5412CA1D7200C67F42 /* os_AIX.s */, - 1AB25B5512CA1D7200C67F42 /* os_BSD_386_2.s */, - 1AB25B5612CA1D7200C67F42 /* os_Darwin.s */, - 1AB25B5712CA1D7200C67F42 /* os_Darwin_ppc.s */, - 1AB25B5812CA1D7200C67F42 /* os_Darwin_x86.s */, - 1AB25B5912CA1D7200C67F42 /* os_Darwin_x86_64.s */, - 1AB25B5A12CA1D7200C67F42 /* os_HPUX.s */, - 1AB25B5B12CA1D7200C67F42 /* os_HPUX_ia64.s */, - 1AB25B5C12CA1D7200C67F42 /* os_Irix.s */, - 1AB25B5D12CA1D7200C67F42 /* os_Linux_ia64.s */, - 1AB25B5E12CA1D7200C67F42 /* os_Linux_ppc.s */, - 1AB25B5F12CA1D7200C67F42 /* os_Linux_x86.s */, - 1AB25B6012CA1D7200C67F42 /* os_Linux_x86_64.s */, - 1AB25B6112CA1D7200C67F42 /* os_ReliantUNIX.s */, - 1AB25B6212CA1D7200C67F42 /* os_SunOS_sparcv9.s */, - 1AB25B6312CA1D7200C67F42 /* os_SunOS_ultrasparc.s */, - 1AB25B6412CA1D7200C67F42 /* os_SunOS_x86.s */, - 1AB25B6512CA1D7200C67F42 /* os_SunOS_x86_64.s */, - 1AB25B6612CA1D7200C67F42 /* osf1.c */, - 1AB25B6712CA1D7200C67F42 /* pthreads_user.c */, - 1AB25B6812CA1D7200C67F42 /* qnx.c */, - 1AB25B6912CA1D7200C67F42 /* reliantunix.c */, - 1AB25B6A12CA1D7200C67F42 /* riscos.c */, - 1AB25B6B12CA1D7200C67F42 /* scoos.c */, - 1AB25B6C12CA1D7200C67F42 /* solaris.c */, - 1AB25B6D12CA1D7200C67F42 /* sony.c */, - 1AB25B6E12CA1D7200C67F42 /* sunos4.c */, - 1AB25B6F12CA1D7200C67F42 /* symbian.c */, - 1AB25B7012CA1D7200C67F42 /* unix.c */, - 1AB25B7112CA1D7200C67F42 /* unix_errors.c */, - 1AB25B7212CA1D7200C67F42 /* unixware.c */, - 1AB25B7312CA1D7200C67F42 /* uxpoll.c */, - 1AB25B7412CA1D7200C67F42 /* uxproces.c */, - 1AB25B7512CA1D7200C67F42 /* uxrng.c */, - 1AB25B7612CA1D7200C67F42 /* uxshm.c */, - 1AB25B7712CA1D7200C67F42 /* uxwrap.c */, - ); - path = unix; - sourceTree = ""; - }; - 1AB25B8E12CA1D7200C67F42 /* memory */ = { - isa = PBXGroup; - children = ( - 1AB25B9112CA1D7200C67F42 /* prseg.c */, - 1AB25B9212CA1D7200C67F42 /* prshm.c */, - 1AB25B9312CA1D7200C67F42 /* prshma.c */, - ); - path = memory; - sourceTree = ""; - }; - 1AB25B9412CA1D7200C67F42 /* misc */ = { - isa = PBXGroup; - children = ( - 1AB25B9712CA1D7200C67F42 /* dtoa.c */, - 1AB25B9912CA1D7200C67F42 /* pralarm.c */, - 1AB25B9A12CA1D7200C67F42 /* pratom.c */, - 1AB25B9B12CA1D7200C67F42 /* praton.c */, - 1AB25B9C12CA1D7200C67F42 /* prcountr.c */, - 1AB25B9D12CA1D7200C67F42 /* prdtoa.c */, - 1AB25B9E12CA1D7200C67F42 /* prenv.c */, - 1AB25B9F12CA1D7200C67F42 /* prerr.c */, - 1AB25BA212CA1D7200C67F42 /* prerror.c */, - 1AB25BA312CA1D7200C67F42 /* prerrortable.c */, - 1AB25BA412CA1D7200C67F42 /* prinit.c */, - 1AB25BA512CA1D7200C67F42 /* prinrval.c */, - 1AB25BA612CA1D7200C67F42 /* pripc.c */, - 1AB25BA712CA1D7200C67F42 /* pripcsem.c */, - 1AB25BA812CA1D7200C67F42 /* prlog2.c */, - 1AB25BA912CA1D7200C67F42 /* prlong.c */, - 1AB25BAA12CA1D7200C67F42 /* prnetdb.c */, - 1AB25BAB12CA1D7200C67F42 /* prolock.c */, - 1AB25BAC12CA1D7200C67F42 /* prrng.c */, - 1AB25BAD12CA1D7200C67F42 /* prsystem.c */, - 1AB25BAE12CA1D7200C67F42 /* prthinfo.c */, - 1AB25BAF12CA1D7200C67F42 /* prtime.c */, - 1AB25BB012CA1D7200C67F42 /* prtpool.c */, - 1AB25BB112CA1D7200C67F42 /* prtrace.c */, - ); - path = misc; - sourceTree = ""; - }; - 1AB25BB612CA1D7200C67F42 /* pthreads */ = { - isa = PBXGroup; - children = ( - 1AB25BB912CA1D7200C67F42 /* ptio.c */, - 1AB25BBA12CA1D7200C67F42 /* ptmisc.c */, - 1AB25BBB12CA1D7200C67F42 /* ptsynch.c */, - 1AB25BBC12CA1D7200C67F42 /* ptthread.c */, - ); - path = pthreads; - sourceTree = ""; - }; - 1AB25BBD12CA1D7200C67F42 /* threads */ = { - isa = PBXGroup; - children = ( - 1AB25BBF12CA1D7200C67F42 /* combined */, - 1AB25BC912CA1D7200C67F42 /* prcmon.c */, - 1AB25BCA12CA1D7200C67F42 /* prcthr.c */, - 1AB25BCB12CA1D7200C67F42 /* prdump.c */, - 1AB25BCC12CA1D7200C67F42 /* prmon.c */, - 1AB25BCD12CA1D7200C67F42 /* prrwlock.c */, - 1AB25BCE12CA1D7200C67F42 /* prsem.c */, - 1AB25BCF12CA1D7200C67F42 /* prtpd.c */, - ); - path = threads; - sourceTree = ""; - }; - 1AB25BBF12CA1D7200C67F42 /* combined */ = { - isa = PBXGroup; - children = ( - 1AB25BC212CA1D7200C67F42 /* prucpu.c */, - 1AB25BC312CA1D7200C67F42 /* prucv.c */, - 1AB25BC412CA1D7200C67F42 /* prulock.c */, - 1AB25BC512CA1D7200C67F42 /* prustack.c */, - 1AB25BC612CA1D7200C67F42 /* pruthr.c */, - ); - path = combined; - sourceTree = ""; - }; - 1AB674ADFE9D54B511CA2CBB /* Products */ = { - isa = PBXGroup; - children = ( - D2AAC046055464E500DB518D /* libjs_for_oolite.a */, - 1AB25ACA12CA1CB100C67F42 /* libnspr4_for_oolite.a */, - 1AD05E0812CD189100704F1D /* jsapi-tests */, - 1AC16B5912F0905200907218 /* jsoplengen */, - 1AC16CBF12F0943F00907218 /* jskwgen */, - ); - name = Products; - sourceTree = ""; - }; - 1AB7772112CA4931001478BB /* headers */ = { - isa = PBXGroup; - children = ( - 1AB7772212CA4939001478BB /* jsanalyze.h */, - 1AB7772312CA4939001478BB /* jsapi.h */, - 1AB7772412CA4939001478BB /* jsarena.h */, - 1AB7772512CA4939001478BB /* jsarray.h */, - 1AB7772612CA4939001478BB /* jsatom.h */, - 1AB7772712CA4939001478BB /* jsatominlines.h */, - 1AB7772812CA4939001478BB /* jsbit.h */, - 1AB7772912CA4939001478BB /* jsbool.h */, - 1AB7772A12CA4939001478BB /* jsbuiltins.h */, - 1AB7772B12CA4939001478BB /* jscell.h */, - 1AB7772C12CA4939001478BB /* jsclist.h */, - 1AB7772D12CA493A001478BB /* jsclone.h */, - 1AB7772E12CA493A001478BB /* jscntxt.h */, - 1AB7772F12CA493A001478BB /* jscntxtinlines.h */, - 1AB7773012CA493A001478BB /* jscompartment.h */, - 1AB7773112CA493A001478BB /* jscompat.h */, - 1AB7773212CA493A001478BB /* jscpucfg.h */, - 1AB7773312CA493A001478BB /* jsdate.h */, - 1AB7773412CA493A001478BB /* jsdbgapi.h */, - 1AB7773512CA493A001478BB /* jsdbgapiinlines.h */, - 1AB7773612CA493A001478BB /* jsdhash.h */, - 1AB7773712CA493A001478BB /* jsdtoa.h */, - 1AB7773812CA493A001478BB /* jsemit.h */, - 1AB7773912CA493A001478BB /* jsexn.h */, - 1AB7773A12CA493A001478BB /* jsfun.h */, - 1AB7773B12CA493A001478BB /* jsfuninlines.h */, - 1AB7773C12CA493A001478BB /* jsgc.h */, - 1AB7773D12CA493A001478BB /* jsgcchunk.h */, - 1AB7773E12CA493A001478BB /* jsgcinlines.h */, - 1AB7773F12CA493A001478BB /* jsgcstats.h */, - 1AB7774012CA493A001478BB /* jshash.h */, - 1AB7774112CA493A001478BB /* jshashtable.h */, - 1AB7774212CA493A001478BB /* jsinterp.h */, - 1AB7774312CA493A001478BB /* jsinterpinlines.h */, - 1AB7774412CA493A001478BB /* jsinttypes.h */, - 1AB7774512CA493A001478BB /* jsiter.h */, - 1AB7774612CA493A001478BB /* jslibmath.h */, - 1AB7774712CA493A001478BB /* jslock.h */, - 1AB7774812CA493A001478BB /* jslong.h */, - 1AB7774912CA493A001478BB /* jsmath.h */, - 1AB7774A12CA493A001478BB /* jsnativestack.h */, - 1AB7774B12CA493A001478BB /* jsnum.h */, - 1AB7774C12CA493A001478BB /* jsobj.h */, - 1AB7774D12CA493A001478BB /* jsobjinlines.h */, - 1AB7774E12CA493A001478BB /* json.h */, - 1AB7774F12CA493A001478BB /* jsopcode.h */, - 1AB7775012CA493A001478BB /* jsopcodeinlines.h */, - 1AB7775112CA493A001478BB /* jsotypes.h */, - 1AB7775212CA493A001478BB /* jsparse.h */, - 1AB7775312CA493A001478BB /* jsprf.h */, - 1AB7775412CA493A001478BB /* jsprobes.h */, - 1AB7775512CA493A001478BB /* jspropertycache.h */, - 1AB7775612CA493A001478BB /* jspropertycacheinlines.h */, - 1AB7775712CA493A001478BB /* jspropertytree.h */, - 1AB7775812CA493A001478BB /* jsproxy.h */, - 1AB7775912CA493A001478BB /* jsprvtd.h */, - 1AB7775A12CA493A001478BB /* jspubtd.h */, - 1AB7775B12CA493A001478BB /* jsreflect.h */, - 1AB7775C12CA493A001478BB /* jsregexp.h */, - 1AB7775D12CA493A001478BB /* jsregexpinlines.h */, - 1AB7775E12CA493A001478BB /* jsscan.h */, - 1AB7775F12CA493A001478BB /* jsscope.h */, - 1AB7776012CA493A001478BB /* jsscopeinlines.h */, - 1AB7776112CA493A001478BB /* jsscript.h */, - 1AB7776212CA493A001478BB /* jsscriptinlines.h */, - 1AB7776312CA493A001478BB /* jsstaticcheck.h */, - 1AB7776412CA493A001478BB /* jsstdint.h */, - 1AB7776512CA493A001478BB /* jsstr.h */, - 1AB7776612CA493A001478BB /* jsstrinlines.h */, - 1AB7776712CA493A001478BB /* jstl.h */, - 1AB7776812CA493A001478BB /* jstracer.h */, - 1AB7776912CA493A001478BB /* jstypedarray.h */, - 1AB7776A12CA493A001478BB /* jstypes.h */, - 1AB7776B12CA493A001478BB /* jsutil.h */, - 1AB7776C12CA493A001478BB /* jsval.h */, - 1AB7776D12CA493A001478BB /* jsvalue.h */, - 1AB7776E12CA493A001478BB /* jsvector.h */, - 1AB7776F12CA493A001478BB /* jsversion.h */, - 1AB7777012CA493A001478BB /* jswin.h */, - 1AB7777112CA493A001478BB /* jswrapper.h */, - 1AB7777212CA493A001478BB /* jsxdrapi.h */, - 1AB7777312CA493A001478BB /* jsxml.h */, - 1AB7777412CA493A001478BB /* prmjtime.h */, - 1AB7777512CA493A001478BB /* resource.h */, - ); - name = headers; - sourceTree = ""; - }; - 1AC16B5E12F0905D00907218 /* autogen */ = { - isa = PBXGroup; - children = ( - 1AC16B6012F0907000907218 /* jsoplengen.cpp */, - 1AC16CC212F0945000907218 /* jskwgen.cpp */, - ); - name = autogen; - sourceTree = ""; - }; - 1AD05E0D12CD189700704F1D /* jsapi-tests */ = { - isa = PBXGroup; - children = ( - 1AD05E0F12CD18B100704F1D /* selfTest.cpp */, - 1AD05E1012CD18B100704F1D /* testBug604087.cpp */, - 1AD05E1112CD18B100704F1D /* testClassGetter.cpp */, - 1AD05E1212CD18B100704F1D /* testCloneScript.cpp */, - 1AD05E1312CD18B100704F1D /* testConservativeGC.cpp */, - 1AD05E1412CD18B100704F1D /* testContexts.cpp */, - 1AD05E1512CD18B100704F1D /* testDebugger.cpp */, - 1AD05E1612CD18B100704F1D /* testDeepFreeze.cpp */, - 1AD05E1712CD18B100704F1D /* testDefineGetterSetterNonEnumerable.cpp */, - 1AD05E1812CD18B100704F1D /* testDefineProperty.cpp */, - 1AD05E1912CD18B100704F1D /* testExtendedEq.cpp */, - 1AD05E1A12CD18B100704F1D /* testFuncCallback.cpp */, - 1AD05E1B12CD18B100704F1D /* testGCChunkAlloc.cpp */, - 1AD05E1C12CD18B100704F1D /* testGetPropertyDefault.cpp */, - 1AD05E1D12CD18B100704F1D /* testIntString.cpp */, - 1AD05E1E12CD18B100704F1D /* testIsAboutToBeFinalized.cpp */, - 1AD05E1F12CD18B100704F1D /* testLookup.cpp */, - 1AD05E2012CD18B100704F1D /* testNewObject.cpp */, - 1AD05E2112CD18B100704F1D /* testOps.cpp */, - 1AD05E2212CD18B100704F1D /* testPropCache.cpp */, - 1AD05E2312CD18B100704F1D /* tests.cpp */, - 1AD05E2412CD18B100704F1D /* tests.h */, - 1AD05E2512CD18B100704F1D /* testSameValue.cpp */, - 1AD05E2612CD18B100704F1D /* testScriptObject.cpp */, - 1AD05E2812CD18B100704F1D /* testThreadGC.cpp */, - 1AD05E2912CD18B100704F1D /* testThreads.cpp */, - 1AD05E2A12CD18B100704F1D /* testTrap.cpp */, - 1AD05E2B12CD18B100704F1D /* testUTF8.cpp */, - 1AD05E2C12CD18B100704F1D /* testVersion.cpp */, - 1AD05E2D12CD18B100704F1D /* testXDR.cpp */, - ); - name = "jsapi-tests"; - path = "../../mozilla/js/src/jsapi-tests"; - sourceTree = ""; - }; - 1AEA214D12CBBBD600EC0F43 /* Oolite-specific hacks */ = { - isa = PBXGroup; - children = ( - 1AEA206312CB9C2C00EC0F43 /* pr-oolite-prefix.h */, - 1A06F18D12CA697100FB681A /* js-oolite-prefix.h */, - 1AB25AB612CA1C1D00C67F42 /* js-config.h */, - 1AB25AB712CA1C1D00C67F42 /* jsautocfg.h */, - 1AB7750D12CA243C001478BB /* _pr_bld.h */, - 1AB7762412CA3182001478BB /* jsutil.cpp */, - 1AEA209112CB9E8600EC0F43 /* pr-oolite-shim.m */, - 1AEA23D412CC003800EC0F43 /* js-oolite-shim.cpp */, - 1AD05F1312CD224100704F1D /* jsapitests-oolite-shim.m */, - 1AEA207F12CB9CE800EC0F43 /* os_Darwin_universal.s */, - 1AEA21DD12CBC63100EC0F43 /* NativeUniversal.cpp */, - ); - name = "Oolite-specific hacks"; - sourceTree = ""; - }; - 1AEA214E12CBBC1500EC0F43 /* tracejit */ = { - isa = PBXGroup; - children = ( - 1AEA214F12CBBC1500EC0F43 /* Writer.cpp */, - 1AEA215012CBBC1500EC0F43 /* Writer.h */, - ); - path = tracejit; - sourceTree = ""; - }; - 1AEA215512CBBC2500EC0F43 /* nanojit */ = { - isa = PBXGroup; - children = ( - 1AEA220912CBC7A800EC0F43 /* Allocator.h */, - 1AEA220712CBC7A500EC0F43 /* Allocator.cpp */, - 1AEA21D512CBC5F100EC0F43 /* Assembler.h */, - 1AEA21D412CBC5F100EC0F43 /* Assembler.cpp */, - 1AEA216112CBBCAD00EC0F43 /* avmplus.h */, - 1AEA21F712CBC75F00EC0F43 /* avmplus.cpp */, - 1AEA21C312CBC5AB00EC0F43 /* CodeAlloc.h */, - 1AEA21C212CBC5AB00EC0F43 /* CodeAlloc.cpp */, - 1AEA220F12CBC7C200EC0F43 /* Containers.h */, - 1AEA220D12CBC7BF00EC0F43 /* Containers.cpp */, - 1AEA21C712CBC5C400EC0F43 /* Fragmento.h */, - 1AEA21C612CBC5C400EC0F43 /* Fragmento.cpp */, - 1AEA219412CBC26700EC0F43 /* LIR.h */, - 1AEA219212CBC26100EC0F43 /* LIR.cpp */, - 1AEA215612CBBC4100EC0F43 /* nanojit.h */, - 1AEA21E312CBC6AA00EC0F43 /* Native.h */, - 1AEA21E412CBC6AA00EC0F43 /* NativeCommon.h */, - 1AEA21E512CBC6AA00EC0F43 /* Nativei386.h */, - 1AEA21E012CBC69E00EC0F43 /* Nativei386.cpp */, - 1AEA21E612CBC6AA00EC0F43 /* NativePPC.h */, - 1AEA21E112CBC69E00EC0F43 /* NativePPC.cpp */, - 1AEA21E712CBC6AA00EC0F43 /* NativeX64.h */, - 1AEA21E212CBC69E00EC0F43 /* NativeX64.cpp */, - 1AEA220312CBC79600EC0F43 /* RegAlloc.h */, - 1AEA220112CBC78D00EC0F43 /* RegAlloc.cpp */, - 1AEA216312CBBCC800EC0F43 /* njconfig.h */, - 1AEA21FD12CBC78000EC0F43 /* njconfig.cpp */, - 1AEA216412CBBCC800EC0F43 /* njcpudetect.h */, - 1AEA21CD12CBC5D600EC0F43 /* VMPI.h */, - 1AEA21CC12CBC5D600EC0F43 /* VMPI.cpp */, - ); - path = nanojit; - sourceTree = ""; - }; - 1AEA22DC12CBECC400EC0F43 /* assembler */ = { - isa = PBXGroup; - children = ( - 1AEA22DD12CBECDF00EC0F43 /* assembler */, - 1AEA22F112CBECDF00EC0F43 /* jit */, - 1AEA22F712CBECDF00EC0F43 /* moco */, - 1AEA22F912CBECDF00EC0F43 /* wtf */, - ); - path = assembler; - sourceTree = ""; - }; - 1AEA22DD12CBECDF00EC0F43 /* assembler */ = { - isa = PBXGroup; - children = ( - 1AEA22DE12CBECDF00EC0F43 /* AbstractMacroAssembler.h */, - 1AEA22E212CBECDF00EC0F43 /* AssemblerBuffer.h */, - 1AEA22E312CBECDF00EC0F43 /* AssemblerBufferWithConstantPool.h */, - 1AEA22E412CBECDF00EC0F43 /* CodeLocation.h */, - 1AEA22E512CBECDF00EC0F43 /* LinkBuffer.h */, - 1AEA22E612CBECDF00EC0F43 /* MacroAssembler.h */, - 1AEA22EA12CBECDF00EC0F43 /* MacroAssemblerCodeRef.h */, - 1AEA22EB12CBECDF00EC0F43 /* MacroAssemblerX86.h */, - 1AEA22EC12CBECDF00EC0F43 /* MacroAssemblerX86_64.h */, - 1AEA22ED12CBECDF00EC0F43 /* MacroAssemblerX86Common.cpp */, - 1AEA22EE12CBECDF00EC0F43 /* MacroAssemblerX86Common.h */, - 1AEA22EF12CBECDF00EC0F43 /* RepatchBuffer.h */, - 1AEA22F012CBECDF00EC0F43 /* X86Assembler.h */, - ); - path = assembler; - sourceTree = ""; - }; - 1AEA22F112CBECDF00EC0F43 /* jit */ = { - isa = PBXGroup; - children = ( - 1AEA22F212CBECDF00EC0F43 /* ExecutableAllocator.cpp */, - 1AEA22F312CBECDF00EC0F43 /* ExecutableAllocator.h */, - 1AEA22F412CBECDF00EC0F43 /* ExecutableAllocatorPosix.cpp */, - 1AEA22F512CBECDF00EC0F43 /* ExecutableAllocatorSymbian.cpp */, - 1AEA22F612CBECDF00EC0F43 /* ExecutableAllocatorWin.cpp */, - ); - path = jit; - sourceTree = ""; - }; - 1AEA22F712CBECDF00EC0F43 /* moco */ = { - isa = PBXGroup; - children = ( - 1AEA22F812CBECDF00EC0F43 /* MocoStubs.h */, - ); - path = moco; - sourceTree = ""; - }; - 1AEA22F912CBECDF00EC0F43 /* wtf */ = { - isa = PBXGroup; - children = ( - 1AEA22FA12CBECDF00EC0F43 /* Assertions.cpp */, - 1AEA22FB12CBECDF00EC0F43 /* Assertions.h */, - 1AEA22FC12CBECDF00EC0F43 /* Platform.h */, - 1AEA22FD12CBECDF00EC0F43 /* SegmentedVector.h */, - 1AEA22FE12CBECDF00EC0F43 /* VMTags.h */, - ); - path = wtf; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 1AB25AC212CA1CB100C67F42 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D2AAC043055464E500DB518D /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1A06F08712CA564A00FB681A /* jsproto.tbl in Headers */, - 1A06F08212CA563500FB681A /* jsopcode.tbl in Headers */, - 1AB7788A12CA5320001478BB /* js-config.h in Headers */, - 1AB7788B12CA5320001478BB /* jsautocfg.h in Headers */, - 1AB7783212CA5306001478BB /* jsanalyze.h in Headers */, - 1AB7783312CA5306001478BB /* jsapi.h in Headers */, - 1AB7783412CA5306001478BB /* jsarena.h in Headers */, - 1AB7783512CA5306001478BB /* jsarray.h in Headers */, - 1AB7783612CA5306001478BB /* jsatom.h in Headers */, - 1AB7783712CA5306001478BB /* jsatominlines.h in Headers */, - 1AB7783812CA5306001478BB /* jsbit.h in Headers */, - 1AB7783912CA5306001478BB /* jsbool.h in Headers */, - 1AB7783A12CA5306001478BB /* jsbuiltins.h in Headers */, - 1AB7783B12CA5306001478BB /* jscell.h in Headers */, - 1AB7783C12CA5306001478BB /* jsclist.h in Headers */, - 1AB7783D12CA5306001478BB /* jsclone.h in Headers */, - 1AB7783E12CA5306001478BB /* jscntxt.h in Headers */, - 1AB7783F12CA5306001478BB /* jscntxtinlines.h in Headers */, - 1AB7784012CA5306001478BB /* jscompartment.h in Headers */, - 1AB7784112CA5306001478BB /* jscompat.h in Headers */, - 1AB7784212CA5306001478BB /* jscpucfg.h in Headers */, - 1AB7784312CA5306001478BB /* jsdate.h in Headers */, - 1AB7784412CA5306001478BB /* jsdbgapi.h in Headers */, - 1AB7784512CA5306001478BB /* jsdbgapiinlines.h in Headers */, - 1AB7784612CA5306001478BB /* jsdhash.h in Headers */, - 1AB7784712CA5306001478BB /* jsdtoa.h in Headers */, - 1AB7784812CA5306001478BB /* jsemit.h in Headers */, - 1AB7784912CA5306001478BB /* jsexn.h in Headers */, - 1AB7784A12CA5306001478BB /* jsfun.h in Headers */, - 1AB7784B12CA5306001478BB /* jsfuninlines.h in Headers */, - 1AB7784C12CA5306001478BB /* jsgc.h in Headers */, - 1AB7784D12CA5306001478BB /* jsgcchunk.h in Headers */, - 1AB7784E12CA5306001478BB /* jsgcinlines.h in Headers */, - 1AB7784F12CA5306001478BB /* jsgcstats.h in Headers */, - 1AB7785012CA5306001478BB /* jshash.h in Headers */, - 1AB7785112CA5306001478BB /* jshashtable.h in Headers */, - 1AB7785212CA5306001478BB /* jsinterp.h in Headers */, - 1AB7785312CA5306001478BB /* jsinterpinlines.h in Headers */, - 1AB7785412CA5306001478BB /* jsinttypes.h in Headers */, - 1AB7785512CA5306001478BB /* jsiter.h in Headers */, - 1AB7785612CA5306001478BB /* jslibmath.h in Headers */, - 1AB7785712CA5306001478BB /* jslock.h in Headers */, - 1AB7785812CA5306001478BB /* jslong.h in Headers */, - 1AB7785912CA5306001478BB /* jsmath.h in Headers */, - 1AB7785A12CA5306001478BB /* jsnativestack.h in Headers */, - 1AB7785B12CA5306001478BB /* jsnum.h in Headers */, - 1AB7785C12CA5306001478BB /* jsobj.h in Headers */, - 1AB7785D12CA5306001478BB /* jsobjinlines.h in Headers */, - 1AB7785E12CA5306001478BB /* json.h in Headers */, - 1AB7785F12CA5306001478BB /* jsopcode.h in Headers */, - 1AB7786012CA5306001478BB /* jsopcodeinlines.h in Headers */, - 1AB7786112CA5306001478BB /* jsotypes.h in Headers */, - 1AB7786212CA5306001478BB /* jsparse.h in Headers */, - 1AB7786312CA5306001478BB /* jsprf.h in Headers */, - 1AB7786412CA5306001478BB /* jsprobes.h in Headers */, - 1AB7786512CA5306001478BB /* jspropertycache.h in Headers */, - 1AB7786612CA5306001478BB /* jspropertycacheinlines.h in Headers */, - 1AB7786712CA5306001478BB /* jspropertytree.h in Headers */, - 1AB7786812CA5306001478BB /* jsproxy.h in Headers */, - 1AB7786912CA5306001478BB /* jsprvtd.h in Headers */, - 1AB7786A12CA5306001478BB /* jspubtd.h in Headers */, - 1AB7786B12CA5306001478BB /* jsreflect.h in Headers */, - 1AB7786C12CA5306001478BB /* jsregexp.h in Headers */, - 1AB7786D12CA5306001478BB /* jsregexpinlines.h in Headers */, - 1AB7786E12CA5306001478BB /* jsscan.h in Headers */, - 1AB7786F12CA5306001478BB /* jsscope.h in Headers */, - 1AB7787012CA5306001478BB /* jsscopeinlines.h in Headers */, - 1AB7787112CA5306001478BB /* jsscript.h in Headers */, - 1AB7787212CA5306001478BB /* jsscriptinlines.h in Headers */, - 1AB7787312CA5306001478BB /* jsstaticcheck.h in Headers */, - 1AB7787412CA5306001478BB /* jsstdint.h in Headers */, - 1AB7787512CA5306001478BB /* jsstr.h in Headers */, - 1AB7787612CA5306001478BB /* jsstrinlines.h in Headers */, - 1AB7787712CA5306001478BB /* jstl.h in Headers */, - 1AB7787812CA5306001478BB /* jstracer.h in Headers */, - 1AB7787912CA5306001478BB /* jstypedarray.h in Headers */, - 1AB7787A12CA5306001478BB /* jstypes.h in Headers */, - 1AB7787B12CA5306001478BB /* jsutil.h in Headers */, - 1AB7787C12CA5306001478BB /* jsval.h in Headers */, - 1AB7787D12CA5306001478BB /* jsvalue.h in Headers */, - 1AB7787E12CA5306001478BB /* jsvector.h in Headers */, - 1AB7787F12CA5306001478BB /* jsversion.h in Headers */, - 1AB7788012CA5306001478BB /* jswin.h in Headers */, - 1AB7788112CA5306001478BB /* jswrapper.h in Headers */, - 1AB7788212CA5306001478BB /* jsxdrapi.h in Headers */, - 1AB7788312CA5306001478BB /* jsxml.h in Headers */, - 1AB7788412CA5306001478BB /* prmjtime.h in Headers */, - 1AB7788512CA5306001478BB /* resource.h in Headers */, - 1A06F16A12CA656F00FB681A /* RegexJIT.h in Headers */, - 1A06F18E12CA697100FB681A /* js-oolite-prefix.h in Headers */, - 1AEA215212CBBC1500EC0F43 /* Writer.h in Headers */, - 1AEA215712CBBC4100EC0F43 /* nanojit.h in Headers */, - 1AEA216212CBBCAD00EC0F43 /* avmplus.h in Headers */, - 1AEA216512CBBCC800EC0F43 /* njconfig.h in Headers */, - 1AEA216612CBBCC800EC0F43 /* njcpudetect.h in Headers */, - 1AEA219512CBC26700EC0F43 /* LIR.h in Headers */, - 1AEA21C512CBC5AB00EC0F43 /* CodeAlloc.h in Headers */, - 1AEA21C912CBC5C400EC0F43 /* Fragmento.h in Headers */, - 1AEA21CF12CBC5D600EC0F43 /* VMPI.h in Headers */, - 1AEA21D712CBC5F100EC0F43 /* Assembler.h in Headers */, - 1AEA21E812CBC6AA00EC0F43 /* Native.h in Headers */, - 1AEA21E912CBC6AA00EC0F43 /* NativeCommon.h in Headers */, - 1AEA21EA12CBC6AA00EC0F43 /* Nativei386.h in Headers */, - 1AEA21EB12CBC6AA00EC0F43 /* NativePPC.h in Headers */, - 1AEA21EC12CBC6AA00EC0F43 /* NativeX64.h in Headers */, - 1AEA220412CBC79600EC0F43 /* RegAlloc.h in Headers */, - 1AEA220A12CBC7A800EC0F43 /* Allocator.h in Headers */, - 1AEA221012CBC7C200EC0F43 /* Containers.h in Headers */, - 1AEA230312CBED4F00EC0F43 /* AbstractMacroAssembler.h in Headers */, - 1AEA230412CBED5B00EC0F43 /* AssemblerBuffer.h in Headers */, - 1AEA230512CBED5B00EC0F43 /* AssemblerBufferWithConstantPool.h in Headers */, - 1AEA230612CBED5E00EC0F43 /* CodeLocation.h in Headers */, - 1AEA230712CBED5F00EC0F43 /* LinkBuffer.h in Headers */, - 1AEA230812CBED6000EC0F43 /* MacroAssembler.h in Headers */, - 1AEA230912CBED6B00EC0F43 /* MacroAssemblerCodeRef.h in Headers */, - 1AEA230A12CBED6B00EC0F43 /* MacroAssemblerX86.h in Headers */, - 1AEA230B12CBED6C00EC0F43 /* MacroAssemblerX86_64.h in Headers */, - 1AEA230C12CBED6D00EC0F43 /* MacroAssemblerX86Common.h in Headers */, - 1AEA230D12CBED6F00EC0F43 /* RepatchBuffer.h in Headers */, - 1AEA230E12CBED7000EC0F43 /* X86Assembler.h in Headers */, - 1AEA23E212CC012C00EC0F43 /* ExecutableAllocator.h in Headers */, - 1AD5A7A712D38E8400B62503 /* RegexCompiler.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 1AB25AC112CA1CB100C67F42 /* libnspr */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1AB25AC612CA1CB100C67F42 /* Build configuration list for PBXNativeTarget "libnspr" */; - buildPhases = ( - 1AB25AC212CA1CB100C67F42 /* Headers */, - 1AB25AC312CA1CB100C67F42 /* Sources */, - 1AB25AC512CA1CB100C67F42 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = libnspr; - productName = libjs; - productReference = 1AB25ACA12CA1CB100C67F42 /* libnspr4_for_oolite.a */; - productType = "com.apple.product-type.library.static"; - }; - 1AC16B5812F0905200907218 /* jsoplengen */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1AC16B5F12F0905D00907218 /* Build configuration list for PBXNativeTarget "jsoplengen" */; - buildPhases = ( - 1AC16B5612F0905200907218 /* Sources */, - 1AC16B5712F0905200907218 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = jsoplengen; - productName = jsoplengen; - productReference = 1AC16B5912F0905200907218 /* jsoplengen */; - productType = "com.apple.product-type.tool"; - }; - 1AC16CB712F0943F00907218 /* jskwgen */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1AC16CBB12F0943F00907218 /* Build configuration list for PBXNativeTarget "jskwgen" */; - buildPhases = ( - 1AC16CB812F0943F00907218 /* Sources */, - 1AC16CBA12F0943F00907218 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = jskwgen; - productName = jsoplengen; - productReference = 1AC16CBF12F0943F00907218 /* jskwgen */; - productType = "com.apple.product-type.tool"; - }; - 1AD05E0712CD189100704F1D /* jsapi-tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1AD05E0E12CD189700704F1D /* Build configuration list for PBXNativeTarget "jsapi-tests" */; - buildPhases = ( - 1AD05E0512CD189100704F1D /* Sources */, - 1AD05E0612CD189100704F1D /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 1AD05E4D12CD18C000704F1D /* PBXTargetDependency */, - ); - name = "jsapi-tests"; - productName = "jsapi-tests"; - productReference = 1AD05E0812CD189100704F1D /* jsapi-tests */; - productType = "com.apple.product-type.tool"; - }; - D2AAC045055464E500DB518D /* libjs */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1DEB91EB08733DB70010E9CD /* Build configuration list for PBXNativeTarget "libjs" */; - buildPhases = ( - 1AC16B7012F090FE00907218 /* Generate jsautooplen.h */, - 1AC16CC512F0947400907218 /* Genrate jsautokw.h */, - 1AEA217E12CBC08D00EC0F43 /* Assemble imacros */, - D2AAC043055464E500DB518D /* Headers */, - D2AAC044055464E500DB518D /* Sources */, - D289987405E68DCB004EDB86 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 1AEA203212CB9AF900EC0F43 /* PBXTargetDependency */, - 1AC16B6312F0907A00907218 /* PBXTargetDependency */, - 1AC16CE012F0952400907218 /* PBXTargetDependency */, - ); - name = libjs; - productName = libjs; - productReference = D2AAC046055464E500DB518D /* libjs_for_oolite.a */; - productType = "com.apple.product-type.library.static"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 08FB7793FE84155DC02AAC07 /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 0700; - }; - buildConfigurationList = 1DEB91EF08733DB70010E9CD /* Build configuration list for PBXProject "libjs" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 1; - knownRegions = ( - English, - Japanese, - French, - German, - ); - mainGroup = 08FB7794FE84155DC02AAC07 /* libjs */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - D2AAC045055464E500DB518D /* libjs */, - 1AB25AC112CA1CB100C67F42 /* libnspr */, - 1AD05E0712CD189100704F1D /* jsapi-tests */, - 1AC16B5812F0905200907218 /* jsoplengen */, - 1AC16CB712F0943F00907218 /* jskwgen */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXShellScriptBuildPhase section */ - 1AC16B7012F090FE00907218 /* Generate jsautooplen.h */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/jsoplengen", - ); - name = "Generate jsautooplen.h"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "# Build jsautooplen.h.\n# The input data is hard-coded into the jsoplengen tool, which is a target dependency.\n\nmkdir -p \"$DERIVED_FILE_DIR\"\n\nif [ ! -e \"$DERIVED_FILE_DIR/jsautooplen.h\" ]\nthen\n \"$BUILT_PRODUCTS_DIR/jsoplengen\" \"$DERIVED_FILE_DIR/jsautooplen.h\"\nfi\n"; - showEnvVarsInLog = 0; - }; - 1AC16CC512F0947400907218 /* Genrate jsautokw.h */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/jskwgen", - ); - name = "Genrate jsautokw.h"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "# Build jsautokw.h.\n# The input data is hard-coded into the jskwgen tool, which is a target dependency.\n\nmkdir -p \"$DERIVED_FILE_DIR\"\n\nif [ ! -e \"$DERIVED_FILE_DIR/jsautokw.h\" ]\nthen\n \"$BUILT_PRODUCTS_DIR/jskwgen\" \"$DERIVED_FILE_DIR/jsautokw.h\"\nfi\n"; - }; - 1AEA217E12CBC08D00EC0F43 /* Assemble imacros */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(JS_SRC_PATH)/imacros.jsasm", - ); - name = "Assemble imacros"; - outputPaths = ( - "$(DERIVED_FILE_DIR)/imacros.c.out", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "python \"$JS_SRC_PATH/imacro_asm.py\" \"$JS_SRC_PATH/imacros.jsasm\" \"$DERIVED_FILE_DIR/imacros.c.out\"\n"; - showEnvVarsInLog = 0; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 1AB25AC312CA1CB100C67F42 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1AEA203012CB9AF200EC0F43 /* ptthread.c in Sources */, - 1AEA207012CB9C7200EC0F43 /* ptsynch.c in Sources */, - 1AEA207312CB9C8E00EC0F43 /* prmem.c in Sources */, - 1AEA207912CB9CBB00EC0F43 /* pratom.c in Sources */, - 1AEA208012CB9CE800EC0F43 /* os_Darwin_universal.s in Sources */, - 1AEA208912CB9D6F00EC0F43 /* prtpd.c in Sources */, - 1AEA20C112CBA25200EC0F43 /* prinrval.c in Sources */, - 1AEA20C612CBA31700EC0F43 /* unix.c in Sources */, - 1AEA20CA12CBA33700EC0F43 /* prerror.c in Sources */, - 1AEA20CE12CBA34E00EC0F43 /* unix_errors.c in Sources */, - 1AD05ECA12CD1F5300704F1D /* pripc.c in Sources */, - 1AD05EF812CD20ED00704F1D /* prinit.c in Sources */, - 1AD05F0412CD217100704F1D /* uxproces.c in Sources */, - 1AD05F0512CD218300704F1D /* prlink.c in Sources */, - 1AD05F0612CD219D00704F1D /* priometh.c in Sources */, - 1AD05F0912CD21B900704F1D /* prnetdb.c in Sources */, - 1AD05F0A12CD21CA00704F1D /* prlayer.c in Sources */, - 1AD05F0B12CD21D800704F1D /* darwin.c in Sources */, - 1AD05F0F12CD220C00704F1D /* prmmap.c in Sources */, - 1AD05F1212CD222000704F1D /* pr-oolite-shim.m in Sources */, - 1AD05F1812CD22B500704F1D /* ptio.c in Sources */, - 1AD05F1A12CD22C800704F1D /* prmwait.c in Sources */, - 1AD05F1B12CD22D600704F1D /* prprf.c in Sources */, - 1AD05F2312CD230800704F1D /* prtime.c in Sources */, - 1AD05F2D12CD237200704F1D /* prenv.c in Sources */, - 1AD05F3112CD237F00704F1D /* prdtoa.c in Sources */, - 1AD05F3512CD239700704F1D /* prseg.c in Sources */, - 1AD05F3C12CD23DF00704F1D /* prscanf.c in Sources */, - 1AD05F3F12CD23F400704F1D /* prfdcach.c in Sources */, - 1AD05F4212CD241A00704F1D /* prosdep.c in Sources */, - 1AD05F4912CD245100704F1D /* prmapopt.c in Sources */, - 1AD05F4C12CD246C00704F1D /* prstdio.c in Sources */, - 1AD05F4F12CD247D00704F1D /* prrwlock.c in Sources */, - 1AD05F5112CD248A00704F1D /* prcmon.c in Sources */, - 1AD05F5612CD24BF00704F1D /* prerr.c in Sources */, - 1AD05F5B12CD24FC00704F1D /* ptmisc.c in Sources */, - 1AD05F6012CD251F00704F1D /* prerrortable.c in Sources */, - 1AD05F6A12CD256200704F1D /* praton.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1AC16B5612F0905200907218 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1AC16B6112F0907000907218 /* jsoplengen.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1AC16CB812F0943F00907218 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1AC16CC312F0945000907218 /* jskwgen.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1AD05E0512CD189100704F1D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1AD05E2E12CD18B100704F1D /* selfTest.cpp in Sources */, - 1AD05E3012CD18B100704F1D /* testClassGetter.cpp in Sources */, - 1AD05E3112CD18B100704F1D /* testCloneScript.cpp in Sources */, - 1AD05E3212CD18B100704F1D /* testConservativeGC.cpp in Sources */, - 1AD05E3312CD18B100704F1D /* testContexts.cpp in Sources */, - 1AD05E3412CD18B100704F1D /* testDebugger.cpp in Sources */, - 1AD05E3512CD18B100704F1D /* testDeepFreeze.cpp in Sources */, - 1AD05E3612CD18B100704F1D /* testDefineGetterSetterNonEnumerable.cpp in Sources */, - 1AD05E3712CD18B100704F1D /* testDefineProperty.cpp in Sources */, - 1AD05E3812CD18B100704F1D /* testExtendedEq.cpp in Sources */, - 1AD05E3A12CD18B100704F1D /* testGCChunkAlloc.cpp in Sources */, - 1AD05E3B12CD18B100704F1D /* testGetPropertyDefault.cpp in Sources */, - 1AD05E3C12CD18B100704F1D /* testIntString.cpp in Sources */, - 1AD05E3E12CD18B100704F1D /* testLookup.cpp in Sources */, - 1AD05E3F12CD18B100704F1D /* testNewObject.cpp in Sources */, - 1AD05E4012CD18B100704F1D /* testOps.cpp in Sources */, - 1AD05E4112CD18B100704F1D /* testPropCache.cpp in Sources */, - 1AD05E4212CD18B100704F1D /* tests.cpp in Sources */, - 1AD05E4312CD18B100704F1D /* testSameValue.cpp in Sources */, - 1AD05E4412CD18B100704F1D /* testScriptObject.cpp in Sources */, - 1AD05E4612CD18B100704F1D /* testThreadGC.cpp in Sources */, - 1AD05E4712CD18B100704F1D /* testThreads.cpp in Sources */, - 1AD05E4812CD18B100704F1D /* testTrap.cpp in Sources */, - 1AD05E4912CD18B100704F1D /* testUTF8.cpp in Sources */, - 1AD05E4A12CD18B100704F1D /* testVersion.cpp in Sources */, - 1AD05E4B12CD18B100704F1D /* testXDR.cpp in Sources */, - 1AD05F1412CD224100704F1D /* jsapitests-oolite-shim.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D2AAC044055464E500DB518D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1AB25AA712CA1B6E00C67F42 /* jsapi.cpp in Sources */, - 1AB7761512CA2F85001478BB /* jsarray.cpp in Sources */, - 1AB7762512CA3182001478BB /* jsutil.cpp in Sources */, - 1AB7762E12CA33C9001478BB /* jsfun.cpp in Sources */, - 1AB7763D12CA3415001478BB /* jsscript.cpp in Sources */, - 1AB7764212CA3437001478BB /* jsopcode.cpp in Sources */, - 1AB7764A12CA34B6001478BB /* jsdbgapi.cpp in Sources */, - 1AB7764F12CA34D7001478BB /* jscntxt.cpp in Sources */, - 1AB7765512CA3539001478BB /* jsgc.cpp in Sources */, - 1AB7765912CA3564001478BB /* jsxdrapi.cpp in Sources */, - 1AB7765C12CA3576001478BB /* json.cpp in Sources */, - 1AB7766612CA35CA001478BB /* jsproxy.cpp in Sources */, - 1AB7766A12CA3601001478BB /* jsobj.cpp in Sources */, - 1AB7766C12CA3606001478BB /* jsinterp.cpp in Sources */, - 1AB7767912CA36FB001478BB /* jsiter.cpp in Sources */, - 1AB7768012CA3737001478BB /* jsxml.cpp in Sources */, - 1AB7768212CA3743001478BB /* jsstr.cpp in Sources */, - 1AB7768712CA37C9001478BB /* jsatom.cpp in Sources */, - 1AB7768912CA37CF001478BB /* jsdate.cpp in Sources */, - 1AB7781812CA51B9001478BB /* jsscope.cpp in Sources */, - 1AB7781C12CA51CE001478BB /* jsarena.cpp in Sources */, - 1AB7781E12CA51E6001478BB /* jshash.cpp in Sources */, - 1AB7782212CA5220001478BB /* jsscan.cpp in Sources */, - 1A06F0D312CA59CF00FB681A /* jsnum.cpp in Sources */, - 1A06F0D412CA59DC00FB681A /* jspropertytree.cpp in Sources */, - 1A06F0D512CA59DD00FB681A /* jsparse.cpp in Sources */, - 1A06F0D912CA5A1900FB681A /* jsdhash.cpp in Sources */, - 1A06F0DD12CA5A4F00FB681A /* jsbool.cpp in Sources */, - 1A06F0E712CA5AC800FB681A /* jsregexp.cpp in Sources */, - 1A06F0F012CA5B3400FB681A /* jsinvoke.cpp in Sources */, - 1A06F0F712CA5BC200FB681A /* jslog2.cpp in Sources */, - 1A06F0FC12CA5C0E00FB681A /* jstypedarray.cpp in Sources */, - 1A06F10212CA5C2700FB681A /* jsemit.cpp in Sources */, - 1A06F11E12CA5CAE00FB681A /* jsdtoa.cpp in Sources */, - 1A06F12212CA601E00FB681A /* jsexn.cpp in Sources */, - 1A06F13912CA62C300FB681A /* jsgcstats.cpp in Sources */, - 1A06F13B12CA62DD00FB681A /* jsnativestack.cpp in Sources */, - 1A06F14612CA63C200FB681A /* jscompartment.cpp in Sources */, - 1A06F14A12CA63E700FB681A /* jsmath.cpp in Sources */, - 1A06F14E12CA643600FB681A /* jsreflect.cpp in Sources */, - 1A06F15212CA646E00FB681A /* jsprf.cpp in Sources */, - 1A06F15612CA64AB00FB681A /* jswrapper.cpp in Sources */, - 1A06F15A12CA64D000FB681A /* prmjtime.cpp in Sources */, - 1A06F15E12CA64EF00FB681A /* jspropertycache.cpp in Sources */, - 1A06F16212CA651100FB681A /* jsgcchunk.cpp in Sources */, - 1A06F18212CA693B00FB681A /* pcre_compile.cpp in Sources */, - 1A06F18412CA693F00FB681A /* pcre_exec.cpp in Sources */, - 1A06F19512CA6A4C00FB681A /* pcre_xclass.cpp in Sources */, - 1A06F19912CA6A5A00FB681A /* pcre_tables.cpp in Sources */, - 1A06F19F12CA6A7400FB681A /* pcre_ucp_searchfuncs.cpp in Sources */, - 1A06F1B812CA6B8600FB681A /* conversions.cc in Sources */, - 1A06F1BC12CA6B9C00FB681A /* utils.cc in Sources */, - 1A06F1C012CA6BAB00FB681A /* v8-dtoa.cc in Sources */, - 1A06F1C612CA6BBC00FB681A /* fast-dtoa.cc in Sources */, - 1A06F1CA12CA6BD100FB681A /* diy-fp.cc in Sources */, - 1A06F1CC12CA6BDB00FB681A /* platform.cc in Sources */, - 1A06F1D212CA6C1800FB681A /* checks.cc in Sources */, - 1A63DE9112CA9C5C00508CDB /* jsclone.cpp in Sources */, - 1AEA215112CBBC1500EC0F43 /* Writer.cpp in Sources */, - 1AEA217712CBBFA600EC0F43 /* jstracer.cpp in Sources */, - 1AEA218D12CBC22400EC0F43 /* jsbuiltins.cpp in Sources */, - 1AEA219312CBC26100EC0F43 /* LIR.cpp in Sources */, - 1AEA21C412CBC5AB00EC0F43 /* CodeAlloc.cpp in Sources */, - 1AEA21C812CBC5C400EC0F43 /* Fragmento.cpp in Sources */, - 1AEA21CE12CBC5D600EC0F43 /* VMPI.cpp in Sources */, - 1AEA21D612CBC5F100EC0F43 /* Assembler.cpp in Sources */, - 1AEA21DE12CBC63100EC0F43 /* NativeUniversal.cpp in Sources */, - 1AEA21F812CBC75F00EC0F43 /* avmplus.cpp in Sources */, - 1AEA21FE12CBC78000EC0F43 /* njconfig.cpp in Sources */, - 1AEA220212CBC78D00EC0F43 /* RegAlloc.cpp in Sources */, - 1AEA220812CBC7A500EC0F43 /* Allocator.cpp in Sources */, - 1AEA220E12CBC7BF00EC0F43 /* Containers.cpp in Sources */, - 1AEA234112CBF6A700EC0F43 /* Logging.cpp in Sources */, - 1AEA236B12CBF95500EC0F43 /* MacroAssemblerX86Common.cpp in Sources */, - 1AEA23D012CBFFF700EC0F43 /* jsanalyze.cpp in Sources */, - 1AEA23D512CC003800EC0F43 /* js-oolite-shim.cpp in Sources */, - 1AEA23E012CC012700EC0F43 /* ExecutableAllocator.cpp in Sources */, - 1AEA23E112CC012900EC0F43 /* ExecutableAllocatorPosix.cpp in Sources */, - 1AEA23E912CC029500EC0F43 /* Retcon.cpp in Sources */, - 1AD5A78C12D38C4A00B62503 /* RegexJIT.cpp in Sources */, - 1AD5A7A612D38E8400B62503 /* RegexCompiler.cpp in Sources */, - 1A69736012F44D2A000CC708 /* jsprobes.cpp in Sources */, - 1A54105F14B882C900B8A4BE /* jslock.cpp in Sources */, - 1A54106914B883F700B8A4BE /* Compiler.cpp in Sources */, - 1A54106A14B883F900B8A4BE /* FastArithmetic.cpp in Sources */, - 1A54106B14B883FE00B8A4BE /* FastOps.cpp in Sources */, - 1A54106C14B8840200B8A4BE /* FrameState.cpp in Sources */, - 1A54106D14B8840500B8A4BE /* ImmutableSync.cpp in Sources */, - 1A54106E14B8840B00B8A4BE /* InvokeHelpers.cpp in Sources */, - 1A54106F14B8840F00B8A4BE /* MethodJIT.cpp in Sources */, - 1A54107014B8841200B8A4BE /* MonoIC.cpp in Sources */, - 1A54107114B8841600B8A4BE /* PolyIC.cpp in Sources */, - 1A54107214B8841B00B8A4BE /* StubCalls.cpp in Sources */, - 1A54107314B8842200B8A4BE /* StubCompiler.cpp in Sources */, - 1A54107414B8842400B8A4BE /* TrampolineCompiler.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 1AC16B6312F0907A00907218 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 1AC16B5812F0905200907218 /* jsoplengen */; - targetProxy = 1AC16B6212F0907A00907218 /* PBXContainerItemProxy */; - }; - 1AC16CE012F0952400907218 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 1AC16CB712F0943F00907218 /* jskwgen */; - targetProxy = 1AC16CDF12F0952400907218 /* PBXContainerItemProxy */; - }; - 1AD05E4D12CD18C000704F1D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = D2AAC045055464E500DB518D /* libjs */; - targetProxy = 1AD05E4C12CD18C000704F1D /* PBXContainerItemProxy */; - }; - 1AEA203212CB9AF900EC0F43 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 1AB25AC112CA1CB100C67F42 /* libnspr */; - targetProxy = 1AEA203112CB9AF900EC0F43 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 1AB25A6D12CA13A000C67F42 /* TestRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1AB25A6712CA12BA00C67F42 /* oolite-targets.xcconfig */; - buildSettings = { - GCC_C_LANGUAGE_STANDARD = gnu99; - MOZILLA_PATH = "$(SRCROOT)/../../mozilla/"; - }; - name = TestRelease; - }; - 1AB25A6E12CA13A000C67F42 /* TestRelease */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_CW_ASM_SYNTAX = YES; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = NO; - GCC_MODEL_TUNING = G5; - GCC_PREFIX_HEADER = "js-oolite-prefix.h"; - GCC_PREPROCESSOR_DEFINITIONS = "MDCPUCFG=\"\\\"md/_darwin.cfg\\\"\""; - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; - HEADER_SEARCH_PATHS = ( - "$(JS_SRC_PATH)/assembler", - "$(JS_SRC_PATH)/yarr", - ); - INSTALL_PATH = /usr/local/lib; - JS_SRC_PATH = "$(MOZILLA_PATH)/js/src"; - OTHER_CFLAGS = "-Wno-invalid-offsetof"; - PRODUCT_NAME = js_for_oolite; - PUBLIC_HEADERS_FOLDER_PATH = include/js/; - SYMROOT = ../../../build; - USER_HEADER_SEARCH_PATHS = "$(SRCROOT) $(JS_SRC_PATH) $(MOZILLA_PATH)/nsprpub/pr/include/"; - }; - name = TestRelease; - }; - 1AB25AC712CA1CB100C67F42 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = NO; - GCC_DYNAMIC_NO_PIC = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = NO; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREFIX_HEADER = "pr-oolite-prefix.h"; - GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = ( - "DARWIN=1", - "MDCPUCFG=\"\"", - "_PR_GLOBAL_THREADS_ONLY=1", - "DEBUG=1", - ); - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; - HEADER_SEARCH_PATHS = "$(MOZILLA_PATH)/nsprpub/pr/include/"; - INSTALL_PATH = /usr/local/lib; - PRODUCT_NAME = nspr4_for_oolite; - SYMROOT = ../../../build; - USER_HEADER_SEARCH_PATHS = "$(SRCROOT) $(MOZILLA_PATH)/nsprpub/pr/src $(MOZILLA_PATH)/nsprpub/pr/include/private/"; - }; - name = Debug; - }; - 1AB25AC812CA1CB100C67F42 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_INLINES_ARE_PRIVATE_EXTERN = NO; - GCC_MODEL_TUNING = G5; - GCC_PREFIX_HEADER = "pr-oolite-prefix.h"; - GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = ( - "DARWIN=1", - "MDCPUCFG=\"\"", - "_PR_GLOBAL_THREADS_ONLY=1", - ); - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; - HEADER_SEARCH_PATHS = "$(MOZILLA_PATH)/nsprpub/pr/include/"; - INFOPLIST_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - INSTALL_PATH = /usr/local/lib; - PRODUCT_NAME = nspr4_for_oolite; - SYMROOT = ../../../build; - USER_HEADER_SEARCH_PATHS = "$(SRCROOT) $(MOZILLA_PATH)/nsprpub/pr/src $(MOZILLA_PATH)/nsprpub/pr/include/private/"; - }; - name = Deployment; - }; - 1AB25AC912CA1CB100C67F42 /* TestRelease */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_INLINES_ARE_PRIVATE_EXTERN = NO; - GCC_MODEL_TUNING = G5; - GCC_PREFIX_HEADER = "pr-oolite-prefix.h"; - GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = ( - "DARWIN=1", - "MDCPUCFG=\"\"", - "_PR_GLOBAL_THREADS_ONLY=1", - ); - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; - HEADER_SEARCH_PATHS = "$(MOZILLA_PATH)/nsprpub/pr/include/"; - INSTALL_PATH = /usr/local/lib; - PRODUCT_NAME = nspr4_for_oolite; - SYMROOT = ../../../build; - USER_HEADER_SEARCH_PATHS = "$(SRCROOT) $(MOZILLA_PATH)/nsprpub/pr/src $(MOZILLA_PATH)/nsprpub/pr/include/private/"; - }; - name = TestRelease; - }; - 1AC16B5B12F0905200907218 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = NO; - GCC_DYNAMIC_NO_PIC = NO; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - INSTALL_PATH = /usr/local/bin; - PRODUCT_NAME = jsoplengen; - SYMROOT = ../../../build; - }; - name = Debug; - }; - 1AC16B5C12F0905200907218 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_MODEL_TUNING = G5; - INSTALL_PATH = /usr/local/bin; - PRODUCT_NAME = jsoplengen; - SYMROOT = ../../../build; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 1AC16B5D12F0905200907218 /* TestRelease */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - GCC_MODEL_TUNING = G5; - INSTALL_PATH = /usr/local/bin; - PRODUCT_NAME = jsoplengen; - SYMROOT = ../../../build; - }; - name = TestRelease; - }; - 1AC16CBC12F0943F00907218 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = NO; - GCC_DYNAMIC_NO_PIC = NO; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - INSTALL_PATH = /usr/local/bin; - PRODUCT_NAME = jskwgen; - SYMROOT = ../../../build; - }; - name = Debug; - }; - 1AC16CBD12F0943F00907218 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_MODEL_TUNING = G5; - INSTALL_PATH = /usr/local/bin; - PRODUCT_NAME = jskwgen; - SYMROOT = ../../../build; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 1AC16CBE12F0943F00907218 /* TestRelease */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - GCC_MODEL_TUNING = G5; - INSTALL_PATH = /usr/local/bin; - PRODUCT_NAME = jskwgen; - SYMROOT = ../../../build; - }; - name = TestRelease; - }; - 1AD05E0A12CD189100704F1D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = NO; - GCC_DYNAMIC_NO_PIC = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = NO; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "MDCPUCFG=\"\\\"md/_darwin.cfg\\\"\"", - DEBUG, - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO = NO; - INSTALL_PATH = /usr/local/bin; - LIBRARY_SEARCH_PATHS = "$(SYMROOT)"; - MOZILLA_PATH = "$(SRCROOT)/../../Cross-platform-deps/mozilla/"; - PRODUCT_NAME = "jsapi-tests"; - SYMROOT = ../../../build; - USER_HEADER_SEARCH_PATHS = "$(MOZILLA_PATH)/nsprpub/pr/include/"; - }; - name = Debug; - }; - 1AD05E0B12CD189100704F1D /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_INLINES_ARE_PRIVATE_EXTERN = NO; - GCC_MODEL_TUNING = G5; - GCC_PREPROCESSOR_DEFINITIONS = "MDCPUCFG=\"\\\"md/_darwin.cfg\\\"\""; - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO = NO; - INSTALL_PATH = /usr/local/bin; - LIBRARY_SEARCH_PATHS = "$(SYMROOT)"; - MOZILLA_PATH = "$(SRCROOT)/../../Cross-platform-deps/mozilla/"; - PRODUCT_NAME = "jsapi-tests"; - SYMROOT = ../../../build; - USER_HEADER_SEARCH_PATHS = "$(MOZILLA_PATH)/nsprpub/pr/include/"; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 1AD05E0C12CD189100704F1D /* TestRelease */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = NO; - GCC_MODEL_TUNING = G5; - GCC_PREPROCESSOR_DEFINITIONS = "MDCPUCFG=\"\\\"md/_darwin.cfg\\\"\""; - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO = NO; - INSTALL_PATH = /usr/local/bin; - LIBRARY_SEARCH_PATHS = "$(SYMROOT)"; - MOZILLA_PATH = "$(SRCROOT)/../../Cross-platform-deps/mozilla/"; - PRODUCT_NAME = "jsapi-tests"; - SYMROOT = ../../../build; - USER_HEADER_SEARCH_PATHS = "$(MOZILLA_PATH)/nsprpub/pr/include/"; - }; - name = TestRelease; - }; - 1DEB91EC08733DB70010E9CD /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = NO; - GCC_CW_ASM_SYNTAX = YES; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = NO; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREFIX_HEADER = "js-oolite-prefix.h"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "MDCPUCFG=\"\\\"md/_darwin.cfg\\\"\"", - ); - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; - HEADER_SEARCH_PATHS = ( - "$(JS_SRC_PATH)/assembler", - "$(JS_SRC_PATH)/yarr", - ); - INSTALL_PATH = /usr/local/lib; - JS_SRC_PATH = "$(MOZILLA_PATH)/js/src"; - OTHER_CFLAGS = "-Wno-invalid-offsetof"; - PRODUCT_NAME = js_for_oolite; - PUBLIC_HEADERS_FOLDER_PATH = include/js/; - SYMROOT = ../../../build; - USER_HEADER_SEARCH_PATHS = "$(SRCROOT) $(JS_SRC_PATH) $(MOZILLA_PATH)/nsprpub/pr/include/"; - }; - name = Debug; - }; - 1DEB91ED08733DB70010E9CD /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_CW_ASM_SYNTAX = YES; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = NO; - GCC_MODEL_TUNING = G5; - GCC_PREFIX_HEADER = "js-oolite-prefix.h"; - GCC_PREPROCESSOR_DEFINITIONS = "MDCPUCFG=\"\\\"md/_darwin.cfg\\\"\""; - GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = "NDEBUG=1"; - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; - HEADER_SEARCH_PATHS = ( - "$(JS_SRC_PATH)/assembler", - "$(JS_SRC_PATH)/yarr", - ); - INSTALL_PATH = /usr/local/lib; - JS_SRC_PATH = "$(MOZILLA_PATH)/js/src"; - OTHER_CFLAGS = "-Wno-invalid-offsetof"; - PRODUCT_NAME = js_for_oolite; - PUBLIC_HEADERS_FOLDER_PATH = include/js/; - SYMROOT = ../../../build; - USER_HEADER_SEARCH_PATHS = "$(SRCROOT) $(JS_SRC_PATH) $(MOZILLA_PATH)/nsprpub/pr/include/"; - }; - name = Deployment; - }; - 1DEB91F008733DB70010E9CD /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1AB25A6712CA12BA00C67F42 /* oolite-targets.xcconfig */; - buildSettings = { - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_OPTIMIZATION_LEVEL = 0; - MOZILLA_PATH = "$(SRCROOT)/../../mozilla/"; - ONLY_ACTIVE_ARCH = YES; - }; - name = Debug; - }; - 1DEB91F108733DB70010E9CD /* Deployment */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1AB25A6712CA12BA00C67F42 /* oolite-targets.xcconfig */; - buildSettings = { - GCC_C_LANGUAGE_STANDARD = gnu99; - MOZILLA_PATH = "$(SRCROOT)/../../mozilla/"; - }; - name = Deployment; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 1AB25AC612CA1CB100C67F42 /* Build configuration list for PBXNativeTarget "libnspr" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1AB25AC712CA1CB100C67F42 /* Debug */, - 1AB25AC812CA1CB100C67F42 /* Deployment */, - 1AB25AC912CA1CB100C67F42 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 1AC16B5F12F0905D00907218 /* Build configuration list for PBXNativeTarget "jsoplengen" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1AC16B5B12F0905200907218 /* Debug */, - 1AC16B5C12F0905200907218 /* Deployment */, - 1AC16B5D12F0905200907218 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 1AC16CBB12F0943F00907218 /* Build configuration list for PBXNativeTarget "jskwgen" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1AC16CBC12F0943F00907218 /* Debug */, - 1AC16CBD12F0943F00907218 /* Deployment */, - 1AC16CBE12F0943F00907218 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 1AD05E0E12CD189700704F1D /* Build configuration list for PBXNativeTarget "jsapi-tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1AD05E0A12CD189100704F1D /* Debug */, - 1AD05E0B12CD189100704F1D /* Deployment */, - 1AD05E0C12CD189100704F1D /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 1DEB91EB08733DB70010E9CD /* Build configuration list for PBXNativeTarget "libjs" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1DEB91EC08733DB70010E9CD /* Debug */, - 1DEB91ED08733DB70010E9CD /* Deployment */, - 1AB25A6E12CA13A000C67F42 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 1DEB91EF08733DB70010E9CD /* Build configuration list for PBXProject "libjs" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1DEB91F008733DB70010E9CD /* Debug */, - 1DEB91F108733DB70010E9CD /* Deployment */, - 1AB25A6D12CA13A000C67F42 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; -/* End XCConfigurationList section */ - }; - rootObject = 08FB7793FE84155DC02AAC07 /* Project object */; -} diff --git a/deps/Cocoa-deps/libjs/os_Darwin_universal.s b/deps/Cocoa-deps/libjs/os_Darwin_universal.s deleted file mode 100644 index 237452ee7..000000000 --- a/deps/Cocoa-deps/libjs/os_Darwin_universal.s +++ /dev/null @@ -1,5 +0,0 @@ -#if __i386__ -#include "../../mozilla/nsprpub/pr/src/md/unix/os_Darwin_x86.s" -#elif __x86_64__ -#include "../../mozilla/nsprpub/pr/src/md/unix/os_Darwin_x86_64.s" -#endif diff --git a/deps/Cocoa-deps/libjs/pr-oolite-prefix.h b/deps/Cocoa-deps/libjs/pr-oolite-prefix.h deleted file mode 100644 index f5a1e35d3..000000000 --- a/deps/Cocoa-deps/libjs/pr-oolite-prefix.h +++ /dev/null @@ -1,2 +0,0 @@ -#define _PR_PTHREADS 1 -#define _PR_POLL_AVAILABLE 1 diff --git a/deps/Cocoa-deps/libjs/pr-oolite-shim.m b/deps/Cocoa-deps/libjs/pr-oolite-shim.m deleted file mode 100644 index f904e1253..000000000 --- a/deps/Cocoa-deps/libjs/pr-oolite-shim.m +++ /dev/null @@ -1,53 +0,0 @@ -#import "prlog.h" -#import "primpl.h" -#import - - -void OOLogWithPrefix(NSString *messageClass, const char *function, const char *file, unsigned long line, NSString *prefix, NSString *format, ...); - -PRBool nspr_use_zone_allocator __attribute__((used)) = NO; - - -#pragma mark prlog.c - -void _PR_InitLog(void) -{ -} - - -void _PR_LogCleanup(void) -{ -} - - -void PR_LogPrint(const char *fmt, ...) -{ - // PR_snprintf() is a subset of NSString formatting capabilities, so this is OK. - va_list args; - va_start(args, fmt); - NSString *message = [[NSString alloc] initWithFormat:fmt arguments:args]; - va_end(args); - - OOLogWithPrefix(@"nspr", NULL, NULL, 0, @"", @"%@", message); - - [message release]; -} - - -#ifdef DEBUG -void PR_Assert(const char *s, const char *file, PRIntn ln) -{ - OOLogWithPrefix(@"nspr.assertion", NULL, file, ln, @"", @"ASSERTION FAILURE at %s:%lu: %s", file, (long)ln, s); - __builtin_trap(); - abort(); -} -#endif - - -PRLogModuleInfo *PR_NewLogModule(const char *name) -{ - PRLogModuleInfo *result = calloc(1, sizeof(PRLogModuleInfo)); - result->name = strdup(name); - result->level = PR_LOG_ALWAYS; - return result; -} diff --git a/deps/Cocoa-deps/libpng/libpng.xcodeproj/project.pbxproj b/deps/Cocoa-deps/libpng/libpng.xcodeproj/project.pbxproj deleted file mode 100644 index e5541dbdc..000000000 --- a/deps/Cocoa-deps/libpng/libpng.xcodeproj/project.pbxproj +++ /dev/null @@ -1,334 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 1A78B59E12D74BE900D42EE7 /* png.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A78B58A12D74BE900D42EE7 /* png.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1A78B59F12D74BE900D42EE7 /* pngconf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A78B58B12D74BE900D42EE7 /* pngconf.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1A78B5A012D74BE900D42EE7 /* pngpriv.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A78B58C12D74BE900D42EE7 /* pngpriv.h */; }; - 1A78B5A212D74BE900D42EE7 /* png.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B58E12D74BE900D42EE7 /* png.c */; }; - 1A78B5A312D74BE900D42EE7 /* pngerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B58F12D74BE900D42EE7 /* pngerror.c */; }; - 1A78B5A412D74BE900D42EE7 /* pngget.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B59012D74BE900D42EE7 /* pngget.c */; }; - 1A78B5A512D74BE900D42EE7 /* pngmem.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B59112D74BE900D42EE7 /* pngmem.c */; }; - 1A78B5A612D74BE900D42EE7 /* pngpread.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B59212D74BE900D42EE7 /* pngpread.c */; }; - 1A78B5A712D74BE900D42EE7 /* pngread.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B59312D74BE900D42EE7 /* pngread.c */; }; - 1A78B5A812D74BE900D42EE7 /* pngrio.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B59412D74BE900D42EE7 /* pngrio.c */; }; - 1A78B5A912D74BE900D42EE7 /* pngrtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B59512D74BE900D42EE7 /* pngrtran.c */; }; - 1A78B5AA12D74BE900D42EE7 /* pngrutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B59612D74BE900D42EE7 /* pngrutil.c */; }; - 1A78B5AB12D74BE900D42EE7 /* pngset.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B59712D74BE900D42EE7 /* pngset.c */; }; - 1A78B5AD12D74BE900D42EE7 /* pngtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B59912D74BE900D42EE7 /* pngtrans.c */; }; - 1A78B5AE12D74BE900D42EE7 /* pngwio.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B59A12D74BE900D42EE7 /* pngwio.c */; }; - 1A78B5AF12D74BE900D42EE7 /* pngwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B59B12D74BE900D42EE7 /* pngwrite.c */; }; - 1A78B5B012D74BE900D42EE7 /* pngwtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B59C12D74BE900D42EE7 /* pngwtran.c */; }; - 1A78B5B112D74BE900D42EE7 /* pngwutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A78B59D12D74BE900D42EE7 /* pngwutil.c */; }; - 1A96C25214DB3E62007BFBBA /* pnglibconf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A96C25114DB3E62007BFBBA /* pnglibconf.h */; settings = {ATTRIBUTES = (Public, ); }; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - 1A71E6F30BCE340C00CD5C13 /* libpng_for_oolite.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libpng_for_oolite.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1A78B4F412D74B8100D42EE7 /* oolite-targets.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "oolite-targets.xcconfig"; path = "../../../src/Cocoa/oolite-targets.xcconfig"; sourceTree = SOURCE_ROOT; }; - 1A78B58A12D74BE900D42EE7 /* png.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = png.h; sourceTree = ""; }; - 1A78B58B12D74BE900D42EE7 /* pngconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pngconf.h; sourceTree = ""; }; - 1A78B58C12D74BE900D42EE7 /* pngpriv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pngpriv.h; sourceTree = ""; }; - 1A78B58D12D74BE900D42EE7 /* example.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = example.c; sourceTree = ""; }; - 1A78B58E12D74BE900D42EE7 /* png.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = png.c; sourceTree = ""; }; - 1A78B58F12D74BE900D42EE7 /* pngerror.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngerror.c; sourceTree = ""; }; - 1A78B59012D74BE900D42EE7 /* pngget.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngget.c; sourceTree = ""; }; - 1A78B59112D74BE900D42EE7 /* pngmem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngmem.c; sourceTree = ""; }; - 1A78B59212D74BE900D42EE7 /* pngpread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngpread.c; sourceTree = ""; }; - 1A78B59312D74BE900D42EE7 /* pngread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngread.c; sourceTree = ""; }; - 1A78B59412D74BE900D42EE7 /* pngrio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngrio.c; sourceTree = ""; }; - 1A78B59512D74BE900D42EE7 /* pngrtran.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngrtran.c; sourceTree = ""; }; - 1A78B59612D74BE900D42EE7 /* pngrutil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngrutil.c; sourceTree = ""; }; - 1A78B59712D74BE900D42EE7 /* pngset.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngset.c; sourceTree = ""; }; - 1A78B59812D74BE900D42EE7 /* pngtest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngtest.c; sourceTree = ""; }; - 1A78B59912D74BE900D42EE7 /* pngtrans.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngtrans.c; sourceTree = ""; }; - 1A78B59A12D74BE900D42EE7 /* pngwio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngwio.c; sourceTree = ""; }; - 1A78B59B12D74BE900D42EE7 /* pngwrite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngwrite.c; sourceTree = ""; }; - 1A78B59C12D74BE900D42EE7 /* pngwtran.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngwtran.c; sourceTree = ""; }; - 1A78B59D12D74BE900D42EE7 /* pngwutil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pngwutil.c; sourceTree = ""; }; - 1A96C25114DB3E62007BFBBA /* pnglibconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pnglibconf.h; sourceTree = SOURCE_ROOT; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 1A71E6F10BCE340C00CD5C13 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 19C28FACFE9D520D11CA2CBB /* Products */ = { - isa = PBXGroup; - children = ( - 1A71E6F30BCE340C00CD5C13 /* libpng_for_oolite.a */, - ); - name = Products; - sourceTree = ""; - }; - 1A78B58512D74BAD00D42EE7 /* libpng */ = { - isa = PBXGroup; - children = ( - 1A78B58A12D74BE900D42EE7 /* png.h */, - 1A78B58B12D74BE900D42EE7 /* pngconf.h */, - 1A96C25114DB3E62007BFBBA /* pnglibconf.h */, - 1A78B58C12D74BE900D42EE7 /* pngpriv.h */, - 1A78B58D12D74BE900D42EE7 /* example.c */, - 1A78B58E12D74BE900D42EE7 /* png.c */, - 1A78B58F12D74BE900D42EE7 /* pngerror.c */, - 1A78B59012D74BE900D42EE7 /* pngget.c */, - 1A78B59112D74BE900D42EE7 /* pngmem.c */, - 1A78B59212D74BE900D42EE7 /* pngpread.c */, - 1A78B59312D74BE900D42EE7 /* pngread.c */, - 1A78B59412D74BE900D42EE7 /* pngrio.c */, - 1A78B59512D74BE900D42EE7 /* pngrtran.c */, - 1A78B59612D74BE900D42EE7 /* pngrutil.c */, - 1A78B59712D74BE900D42EE7 /* pngset.c */, - 1A78B59812D74BE900D42EE7 /* pngtest.c */, - 1A78B59912D74BE900D42EE7 /* pngtrans.c */, - 1A78B59A12D74BE900D42EE7 /* pngwio.c */, - 1A78B59B12D74BE900D42EE7 /* pngwrite.c */, - 1A78B59C12D74BE900D42EE7 /* pngwtran.c */, - 1A78B59D12D74BE900D42EE7 /* pngwutil.c */, - ); - name = libpng; - path = ../../libpng; - sourceTree = ""; - }; - 29B97314FDCFA39411CA2CEA /* Oolite_GUSTO */ = { - isa = PBXGroup; - children = ( - 1A78B4F412D74B8100D42EE7 /* oolite-targets.xcconfig */, - 1A78B58512D74BAD00D42EE7 /* libpng */, - 19C28FACFE9D520D11CA2CBB /* Products */, - ); - name = Oolite_GUSTO; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 1A71E6EF0BCE340C00CD5C13 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1A78B59E12D74BE900D42EE7 /* png.h in Headers */, - 1A78B59F12D74BE900D42EE7 /* pngconf.h in Headers */, - 1A96C25214DB3E62007BFBBA /* pnglibconf.h in Headers */, - 1A78B5A012D74BE900D42EE7 /* pngpriv.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 1A71E6F20BCE340C00CD5C13 /* libpng */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1A71E6FC0BCE345800CD5C13 /* Build configuration list for PBXNativeTarget "libpng" */; - buildPhases = ( - 1AA0D03212CAB13100BB883D /* Update Code */, - 1A71E6EF0BCE340C00CD5C13 /* Headers */, - 1A71E6F00BCE340C00CD5C13 /* Sources */, - 1A71E6F10BCE340C00CD5C13 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = libpng; - productName = "libpng-custom"; - productReference = 1A71E6F30BCE340C00CD5C13 /* libpng_for_oolite.a */; - productType = "com.apple.product-type.library.static"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 29B97313FDCFA39411CA2CEA /* Project object */ = { - isa = PBXProject; - attributes = { - BuildIndependentTargetsInParallel = YES; - LastUpgradeCheck = 0700; - ORGANIZATIONNAME = ""; - }; - buildConfigurationList = 08B31CB008FE63D70038D42F /* Build configuration list for PBXProject "libpng" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 1; - knownRegions = ( - English, - Japanese, - French, - German, - ); - mainGroup = 29B97314FDCFA39411CA2CEA /* Oolite_GUSTO */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 1A71E6F20BCE340C00CD5C13 /* libpng */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXShellScriptBuildPhase section */ - 1AA0D03212CAB13100BB883D /* Update Code */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(SRCROOT)/../../URLs/libpng.url", - ); - name = "Update Code"; - outputPaths = ( - "$(SRCROOT)/../../libpng/current.url", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd \"$SRCROOT/../scripts\"\n./update-library.sh libpng tgz\n"; - showEnvVarsInLog = 0; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 1A71E6F00BCE340C00CD5C13 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1A78B5A212D74BE900D42EE7 /* png.c in Sources */, - 1A78B5A312D74BE900D42EE7 /* pngerror.c in Sources */, - 1A78B5A412D74BE900D42EE7 /* pngget.c in Sources */, - 1A78B5A512D74BE900D42EE7 /* pngmem.c in Sources */, - 1A78B5A612D74BE900D42EE7 /* pngpread.c in Sources */, - 1A78B5A712D74BE900D42EE7 /* pngread.c in Sources */, - 1A78B5A812D74BE900D42EE7 /* pngrio.c in Sources */, - 1A78B5A912D74BE900D42EE7 /* pngrtran.c in Sources */, - 1A78B5AA12D74BE900D42EE7 /* pngrutil.c in Sources */, - 1A78B5AB12D74BE900D42EE7 /* pngset.c in Sources */, - 1A78B5AD12D74BE900D42EE7 /* pngtrans.c in Sources */, - 1A78B5AE12D74BE900D42EE7 /* pngwio.c in Sources */, - 1A78B5AF12D74BE900D42EE7 /* pngwrite.c in Sources */, - 1A78B5B012D74BE900D42EE7 /* pngwtran.c in Sources */, - 1A78B5B112D74BE900D42EE7 /* pngwutil.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin XCBuildConfiguration section */ - 08B31CB108FE63D70038D42F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1A78B4F412D74B8100D42EE7 /* oolite-targets.xcconfig */; - buildSettings = { - COPY_PHASE_STRIP = NO; - ENABLE_TESTABILITY = YES; - HEADER_SEARCH_PATHS = "$(HEADER_SEARCH_PATHS_QUOTED_1)"; - HEADER_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/Cocoa-deps/Ogg Vorbis\""; - ONLY_ACTIVE_ARCH = YES; - OTHER_CFLAGS = "-DLOADSAVEGUI"; - }; - name = Debug; - }; - 08B31CB208FE63D70038D42F /* Deployment */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1A78B4F412D74B8100D42EE7 /* oolite-targets.xcconfig */; - buildSettings = { - HEADER_SEARCH_PATHS = "$(HEADER_SEARCH_PATHS_QUOTED_1)"; - HEADER_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/Cocoa-deps/Ogg Vorbis\""; - OTHER_CFLAGS = "-DLOADSAVEGUI"; - }; - name = Deployment; - }; - 1A0832D60C2F105000E3AE25 /* TestRelease */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = dwarf; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - HEADER_SEARCH_PATHS = "\"$(SRCROOT)/src/Core/Materials/\""; - INSTALL_PATH = /usr/local/lib; - LLVM_LTO = YES; - PRODUCT_NAME = png_for_oolite; - PUBLIC_HEADERS_FOLDER_PATH = include/png/; - SYMROOT = ../../../build; - }; - name = TestRelease; - }; - 1A0832D80C2F105000E3AE25 /* TestRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1A78B4F412D74B8100D42EE7 /* oolite-targets.xcconfig */; - buildSettings = { - HEADER_SEARCH_PATHS = "$(HEADER_SEARCH_PATHS_QUOTED_1)"; - HEADER_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/Cocoa-deps/Ogg Vorbis\""; - OTHER_CFLAGS = "-DLOADSAVEGUI"; - }; - name = TestRelease; - }; - 1A71E6FD0BCE345800CD5C13 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - GCC_DYNAMIC_NO_PIC = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GENERATE_MASTER_OBJECT_FILE = YES; - HEADER_SEARCH_PATHS = "\"$(SRCROOT)/src/Core/Materials/\""; - INSTALL_PATH = /usr/local/lib; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_NAME = png_for_oolite; - PUBLIC_HEADERS_FOLDER_PATH = include/png/; - SYMROOT = ../../../build; - }; - name = Debug; - }; - 1A71E6FE0BCE345800CD5C13 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = dwarf; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - HEADER_SEARCH_PATHS = "\"$(SRCROOT)/src/Core/Materials/\""; - INSTALL_PATH = /usr/local/lib; - PRODUCT_NAME = png_for_oolite; - PUBLIC_HEADERS_FOLDER_PATH = include/png/; - SYMROOT = ../../../build; - }; - name = Deployment; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 08B31CB008FE63D70038D42F /* Build configuration list for PBXProject "libpng" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 08B31CB108FE63D70038D42F /* Debug */, - 08B31CB208FE63D70038D42F /* Deployment */, - 1A0832D80C2F105000E3AE25 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 1A71E6FC0BCE345800CD5C13 /* Build configuration list for PBXNativeTarget "libpng" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1A71E6FD0BCE345800CD5C13 /* Debug */, - 1A71E6FE0BCE345800CD5C13 /* Deployment */, - 1A0832D60C2F105000E3AE25 /* TestRelease */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; -/* End XCConfigurationList section */ - }; - rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; -} diff --git a/deps/Cocoa-deps/libpng/pnglibconf.h b/deps/Cocoa-deps/libpng/pnglibconf.h deleted file mode 100644 index 3ca1c16fc..000000000 --- a/deps/Cocoa-deps/libpng/pnglibconf.h +++ /dev/null @@ -1,189 +0,0 @@ - -/* libpng STANDARD API DEFINITION */ - -/* pnglibconf.h - library build configuration */ - -/* Libpng 1.5.8 - February 1, 2012 */ - -/* Copyright (c) 1998-2011 Glenn Randers-Pehrson */ - -/* This code is released under the libpng license. */ -/* For conditions of distribution and use, see the disclaimer */ -/* and license in png.h */ - -/* pnglibconf.h */ -/* Derived from: scripts/pnglibconf.dfa */ -/* If you edit this file by hand you must obey the rules expressed in */ -/* pnglibconf.dfa with respect to the dependencies between the following */ -/* symbols. It is much better to generate a new file using */ -/* scripts/libpngconf.mak */ - -#ifndef PNGLCONF_H -#define PNGLCONF_H -/* settings */ -#define PNG_API_RULE 0 -#define PNG_CALLOC_SUPPORTED -#define PNG_COST_SHIFT 3 -#define PNG_DEFAULT_READ_MACROS 1 -#define PNG_GAMMA_THRESHOLD_FIXED 5000 -#define PNG_MAX_GAMMA_8 11 -#define PNG_QUANTIZE_BLUE_BITS 5 -#define PNG_QUANTIZE_GREEN_BITS 5 -#define PNG_QUANTIZE_RED_BITS 5 -#define PNG_sCAL_PRECISION 5 -#define PNG_USER_CHUNK_CACHE_MAX 0 -#define PNG_USER_CHUNK_MALLOC_MAX 0 -#define PNG_USER_HEIGHT_MAX 1000000 -#define PNG_USER_WIDTH_MAX 1000000 -#define PNG_WEIGHT_SHIFT 8 -#define PNG_ZBUF_SIZE 8192 -/* end of settings */ -/* options */ -#define PNG_16BIT_SUPPORTED -#define PNG_ALIGN_MEMORY_SUPPORTED -#define PNG_BENIGN_ERRORS_SUPPORTED -#define PNG_bKGD_SUPPORTED -#define PNG_BUILD_GRAYSCALE_PALETTE_SUPPORTED -#define PNG_CHECK_cHRM_SUPPORTED -#define PNG_cHRM_SUPPORTED -#define PNG_CONSOLE_IO_SUPPORTED -#define PNG_CONVERT_tIME_SUPPORTED -#define PNG_EASY_ACCESS_SUPPORTED -/*#undef PNG_ERROR_NUMBERS_SUPPORTED*/ -#define PNG_ERROR_TEXT_SUPPORTED -#define PNG_FIXED_POINT_SUPPORTED -#define PNG_FLOATING_ARITHMETIC_SUPPORTED -#define PNG_FLOATING_POINT_SUPPORTED -#define PNG_FORMAT_AFIRST_SUPPORTED -#define PNG_FORMAT_BGR_SUPPORTED -#define PNG_gAMA_SUPPORTED -#define PNG_HANDLE_AS_UNKNOWN_SUPPORTED -#define PNG_hIST_SUPPORTED -#define PNG_iCCP_SUPPORTED -#define PNG_INCH_CONVERSIONS_SUPPORTED -#define PNG_INFO_IMAGE_SUPPORTED -#define PNG_IO_STATE_SUPPORTED -#define PNG_iTXt_SUPPORTED -#define PNG_MNG_FEATURES_SUPPORTED -#define PNG_oFFs_SUPPORTED -#define PNG_pCAL_SUPPORTED -#define PNG_pHYs_SUPPORTED -#define PNG_POINTER_INDEXING_SUPPORTED -#define PNG_PROGRESSIVE_READ_SUPPORTED -#define PNG_READ_16BIT_SUPPORTED -#define PNG_READ_ALPHA_MODE_SUPPORTED -#define PNG_READ_ANCILLARY_CHUNKS_SUPPORTED -#define PNG_READ_BACKGROUND_SUPPORTED -#define PNG_READ_BGR_SUPPORTED -#define PNG_READ_bKGD_SUPPORTED -#define PNG_READ_cHRM_SUPPORTED -#define PNG_READ_COMPOSITE_NODIV_SUPPORTED -#define PNG_READ_COMPRESSED_TEXT_SUPPORTED -#define PNG_READ_EXPAND_16_SUPPORTED -#define PNG_READ_EXPAND_SUPPORTED -#define PNG_READ_FILLER_SUPPORTED -#define PNG_READ_gAMA_SUPPORTED -#define PNG_READ_GAMMA_SUPPORTED -#define PNG_READ_GRAY_TO_RGB_SUPPORTED -#define PNG_READ_hIST_SUPPORTED -#define PNG_READ_iCCP_SUPPORTED -#define PNG_READ_INTERLACING_SUPPORTED -#define PNG_READ_INT_FUNCTIONS_SUPPORTED -#define PNG_READ_INVERT_ALPHA_SUPPORTED -#define PNG_READ_INVERT_SUPPORTED -#define PNG_READ_iTXt_SUPPORTED -#define PNG_READ_oFFs_SUPPORTED -#define PNG_READ_OPT_PLTE_SUPPORTED -#define PNG_READ_PACK_SUPPORTED -#define PNG_READ_PACKSWAP_SUPPORTED -#define PNG_READ_pCAL_SUPPORTED -#define PNG_READ_pHYs_SUPPORTED -#define PNG_READ_QUANTIZE_SUPPORTED -#define PNG_READ_RGB_TO_GRAY_SUPPORTED -#define PNG_READ_sBIT_SUPPORTED -#define PNG_READ_SCALE_16_TO_8_SUPPORTED -#define PNG_READ_sCAL_SUPPORTED -#define PNG_READ_SHIFT_SUPPORTED -#define PNG_READ_sPLT_SUPPORTED -#define PNG_READ_sRGB_SUPPORTED -#define PNG_READ_STRIP_16_TO_8_SUPPORTED -#define PNG_READ_STRIP_ALPHA_SUPPORTED -#define PNG_READ_SUPPORTED -#define PNG_READ_SWAP_ALPHA_SUPPORTED -#define PNG_READ_SWAP_SUPPORTED -#define PNG_READ_tEXt_SUPPORTED -#define PNG_READ_TEXT_SUPPORTED -#define PNG_READ_tIME_SUPPORTED -#define PNG_READ_TRANSFORMS_SUPPORTED -#define PNG_READ_tRNS_SUPPORTED -#define PNG_READ_UNKNOWN_CHUNKS_SUPPORTED -#define PNG_READ_USER_CHUNKS_SUPPORTED -#define PNG_READ_USER_TRANSFORM_SUPPORTED -#define PNG_READ_zTXt_SUPPORTED -#define PNG_SAVE_INT_32_SUPPORTED -#define PNG_sBIT_SUPPORTED -#define PNG_sCAL_SUPPORTED -#define PNG_SEQUENTIAL_READ_SUPPORTED -#define PNG_SET_CHUNK_CACHE_LIMIT_SUPPORTED -#define PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED -#define PNG_SETJMP_SUPPORTED -#define PNG_SET_USER_LIMITS_SUPPORTED -#define PNG_sPLT_SUPPORTED -#define PNG_sRGB_SUPPORTED -#define PNG_STDIO_SUPPORTED -#define PNG_tEXt_SUPPORTED -#define PNG_TEXT_SUPPORTED -#define PNG_TIME_RFC1123_SUPPORTED -#define PNG_tIME_SUPPORTED -#define PNG_tRNS_SUPPORTED -#define PNG_UNKNOWN_CHUNKS_SUPPORTED -#define PNG_USER_CHUNKS_SUPPORTED -#define PNG_USER_LIMITS_SUPPORTED -#define PNG_USER_MEM_SUPPORTED -#define PNG_USER_TRANSFORM_INFO_SUPPORTED -#define PNG_USER_TRANSFORM_PTR_SUPPORTED -#define PNG_WARNINGS_SUPPORTED -#define PNG_WRITE_16BIT_SUPPORTED -#define PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED -#define PNG_WRITE_BGR_SUPPORTED -#define PNG_WRITE_bKGD_SUPPORTED -#define PNG_WRITE_cHRM_SUPPORTED -#define PNG_WRITE_COMPRESSED_TEXT_SUPPORTED -#define PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED -#define PNG_WRITE_FILLER_SUPPORTED -#define PNG_WRITE_FILTER_SUPPORTED -#define PNG_WRITE_FLUSH_SUPPORTED -#define PNG_WRITE_gAMA_SUPPORTED -#define PNG_WRITE_hIST_SUPPORTED -#define PNG_WRITE_iCCP_SUPPORTED -#define PNG_WRITE_INTERLACING_SUPPORTED -#define PNG_WRITE_INT_FUNCTIONS_SUPPORTED -#define PNG_WRITE_INVERT_ALPHA_SUPPORTED -#define PNG_WRITE_INVERT_SUPPORTED -#define PNG_WRITE_iTXt_SUPPORTED -#define PNG_WRITE_oFFs_SUPPORTED -#define PNG_WRITE_OPTIMIZE_CMF_SUPPORTED -#define PNG_WRITE_PACK_SUPPORTED -#define PNG_WRITE_PACKSWAP_SUPPORTED -#define PNG_WRITE_pCAL_SUPPORTED -#define PNG_WRITE_pHYs_SUPPORTED -#define PNG_WRITE_sBIT_SUPPORTED -#define PNG_WRITE_sCAL_SUPPORTED -#define PNG_WRITE_SHIFT_SUPPORTED -#define PNG_WRITE_sPLT_SUPPORTED -#define PNG_WRITE_sRGB_SUPPORTED -#define PNG_WRITE_SUPPORTED -#define PNG_WRITE_SWAP_ALPHA_SUPPORTED -#define PNG_WRITE_SWAP_SUPPORTED -#define PNG_WRITE_tEXt_SUPPORTED -#define PNG_WRITE_TEXT_SUPPORTED -#define PNG_WRITE_tIME_SUPPORTED -#define PNG_WRITE_TRANSFORMS_SUPPORTED -#define PNG_WRITE_tRNS_SUPPORTED -#define PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED -#define PNG_WRITE_USER_TRANSFORM_SUPPORTED -#define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED -#define PNG_WRITE_zTXt_SUPPORTED -#define PNG_zTXt_SUPPORTED -/* end of options */ -#endif /* PNGLCONF_H */ diff --git a/deps/Cocoa-deps/scripts/update-library.sh b/deps/Cocoa-deps/scripts/update-library.sh deleted file mode 100755 index 681a4e6e9..000000000 --- a/deps/Cocoa-deps/scripts/update-library.sh +++ /dev/null @@ -1,115 +0,0 @@ -#! /bin/sh - -LIBNAME=$1 -EXTENSION=$2 - - -cd .. - -# Paths relative to .., i.e. Cocoa-deps. -TEMPDIR="temp-download-$LIBNAME" -TARGETDIR="../$LIBNAME" - -URLFILE="../URLs/$LIBNAME.url" -VERSIONFILE="$TARGETDIR/current.url" - -TEMPFILE="$TEMPDIR/$LIBNAME.$EXTENSION" - - -DESIREDURL=`head -n 1 $URLFILE` - - -# Report failure, as an error if there's no existing code but as a warning if there is. -fail() -{ - if [ $LIBRARY_PRESENT -eq 1 ] - then - echo "warning: $1, using existing code originating from $CURRENTURL." - exit 0 - else - echo "error: $1" - exit 1 - fi -} - - -# Determine whether an update is desireable, and whether there's code in place. -if [ -d "$TARGETDIR" ] -then - LIBRARY_PRESENT=1 - if [ -e $VERSIONFILE ] - then - CURRENTURL=`head -n 1 $VERSIONFILE` - if [ "$DESIREDURL" = "$CURRENTURL" ] - then - echo "$LIBNAME is up to date." - exit 0 - else - echo "$LIBNAME is out of date." - fi - else - echo "current.url not present, assuming $LIBNAME is out of date." - CURRENTURL="disk" - fi -else - LIBRARY_PRESENT=0 - echo "$LIBNAME not present, initial download needed." -fi - - -# Clean up temp directory if it's hanging about. -if [ -d "$TEMPDIR" ] -then - rm -rf "$TEMPDIR" -fi - - -# Create temp directory. -mkdir -p "$TEMPDIR" -if [ "$?" -ne "0" ] -then - echo "error: Could not create temporary directory $TEMPDIR." - exit 1 -fi - - -# Download $LIBNAME source. -echo "Downloading $LIBNAME source from $DESIREDURL..." -curl -qgsSf -o "$TEMPFILE" "$DESIREDURL" -if [ "$?" -ne "0" ] -then - fail "could not download $DESIREDURL" -fi - - -# Expand tarball. -echo "Download complete, expanding archive..." -tar -xkf "$TEMPFILE" -C "$TEMPDIR" -if [ "$?" -ne "0" ] -then - fail "could not expand $TEMPFILE into $TEMPDIR" -fi - - -# Remove tarball. -rm "$TEMPFILE" - -# Delete existing code. -rm -rf "$TARGETDIR" - - -# Move new code into place. -mv $TEMPDIR/$LIBNAME* "$TARGETDIR" -if [ "$?" -ne "0" ] -then - echo "error: could not move expanded $LIBNAME source into place." - exit 1 -fi - -# Note version for future reference. -echo "$DESIREDURL" > "$VERSIONFILE" - -# Remove temp directory. -rm -rf "$TEMPDIR" - -echo "Successfully updated $LIBNAME." diff --git a/deps/Cocoa-deps/scripts/update-mozilla.sh b/deps/Cocoa-deps/scripts/update-mozilla.sh deleted file mode 100755 index d0c04bd0a..000000000 --- a/deps/Cocoa-deps/scripts/update-mozilla.sh +++ /dev/null @@ -1,125 +0,0 @@ -#! /bin/sh - -cd .. - - -# Paths relative to .., i.e. Cocoa-deps. -TEMPDIR="temp-download-mozilla" -TARGETDIR="../Cross-platform-deps/mozilla" - -URLFILE="../URLs/mozilla.url" -VERSIONFILE="$TARGETDIR/current.url" - -TEMPFILE="$TEMPDIR/mozilla.tbz" - - -DESIREDURL=`head -n 1 $URLFILE` - - -# Report failure, as an error if there's no existing code but as a warning if there is. -fail() -{ - if [ $LIBRARY_PRESENT -eq 1 ] - then - echo "warning: $1, using existing code originating from $CURRENTURL." - exit 0 - else - echo "error: $1" - exit 1 - fi -} - - -# Determine whether an update is desireable, and whether there's mozilla code in place. -if [ -d "$TARGETDIR" ] -then - LIBRARY_PRESENT=1 - if [ -e "$VERSIONFILE" ] - then - CURRENTURL=`head -n 1 $VERSIONFILE` - if [ "$DESIREDURL" = "$CURRENTURL" ] - then - echo "libjs is up to date." - exit 0 - else - echo "libjs is out of date." - fi - else - echo "current.url not present, assuming libjs is out of date." - CURRENTURL="disk" - fi -else - LIBRARY_PRESENT=0 - echo "libjs not present, initial download needed." -fi - - -# Clean up temp directory if it's hanging about. -if [ -d "$TEMPDIR" ] -then - rm -rf "$TEMPDIR" -fi - - -# Create temp directory. -mkdir "$TEMPDIR" -if [ "$?" -ne "0" ] -then - echo "error: Could not create temporary directory $TEMPDIR." - exit 1 -fi - - -# Download mozilla source. -echo "Downloading libjs source from $DESIREDURL..." -curl -qgsSf -o "$TEMPFILE" "$DESIREDURL" -if [ "$?" -ne "0" ] -then - fail "could not download $DESIREDURL" -fi - - -# Expand tarball. -echo "Download complete, expanding archive..." -tar -xkf "$TEMPFILE" -C "$TEMPDIR" -if [ "$?" -ne "0" ] -then - fail "could not expand $TEMPFILE into $TEMPDIR" -fi - - -# Remove tarball. -rm "$TEMPFILE" - -# Delete existing code. -rm -rf "$TARGETDIR" - -# Create new root mozilla directory. -mkdir -p "$TARGETDIR" - - -MOZILLADIR="$TEMPDIR/mozilla-2.0" - -# Move new code into place. -mv "$MOZILLADIR/js" "$TARGETDIR/js" -if [ "$?" -ne "0" ] -then - echo "error: could not move expanded libjs source into place." - exit 1 -fi - -mv "$MOZILLADIR/nsprpub" "$TARGETDIR/nsprpub" -if [ "$?" -ne "0" ] -then - echo "error: could not move expanded libnspr4 source into place." - exit 1 -fi - -# Note version for future reference. -echo "$DESIREDURL" > "$VERSIONFILE" - -# Remove temp directory. -echo "Cleaning up." -rm -rf "$TEMPDIR" - -echo "Successfully updated libjs." diff --git a/deps/Cocoa-deps/scripts/update-sparkle.sh b/deps/Cocoa-deps/scripts/update-sparkle.sh deleted file mode 100755 index 95a02fbfa..000000000 --- a/deps/Cocoa-deps/scripts/update-sparkle.sh +++ /dev/null @@ -1,116 +0,0 @@ -#! /bin/sh - -LIBNAME="sparkle" -EXTENSION="zip" - - -cd .. - -# Paths relative to .., i.e. Cocoa-deps. -TEMPDIR="temp-download-$LIBNAME" -TARGETDIR="$LIBNAME" - -URLFILE="../URLs/$LIBNAME.url" -VERSIONFILE="$TARGETDIR/current.url" - -TEMPFILE="$TEMPDIR/$LIBNAME.$EXTENSION" - - -DESIREDURL=`head -n 1 $URLFILE` - - -# Report failure, as an error if there's no existing code but as a warning if there is. -function fail -{ - if [ $LIBRARY_PRESENT -eq 1 ] - then - echo "warning: $1, using existing code originating from $CURRENTURL." - exit 0 - else - echo "error: $1" - exit 1 - fi -} - - -# Determine whether an update is desireable, and whether there's code in place. -if [ -d "$TARGETDIR" ] -then - LIBRARY_PRESENT=1 - if [ -e $VERSIONFILE ] - then - CURRENTURL=`head -n 1 $VERSIONFILE` - if [ "$DESIREDURL" = "$CURRENTURL" ] - then - echo "$LIBNAME is up to date." - exit 0 - else - echo "$LIBNAME is out of date." - fi - else - echo "current.url not present, assuming $LIBNAME is out of date." - CURRENTURL="disk" - fi -else - LIBRARY_PRESENT=0 - echo "$LIBNAME not present, initial download needed." -fi - - -# Clean up temp directory if it's hanging about. -if [ -d "$TEMPDIR" ] -then - rm -rf "$TEMPDIR" -fi - - -# Create temp directory. -mkdir -p "$TEMPDIR" -if [ "$?" -ne "0" ] -then - echo "error: Could not create temporary directory $TEMPDIR." - exit 1 -fi - - -# Download $LIBNAME source. -echo "Downloading $LIBNAME source from $DESIREDURL..." -curl -qgsSf -o "$TEMPFILE" "$DESIREDURL" -if [ "$?" -ne "0" ] -then - fail "could not download $DESIREDURL" -fi - - -# Expand zip file. -echo "Download complete, expanding archive..." -unzip -q "$TEMPFILE" -d "$TEMPDIR/$LIBNAME" -if [ "$?" -ne "0" ] -then - fail "could not expand $TEMPFILE into $TEMPDIR" -fi - - -# Remove tarball. -rm "$TEMPFILE" - -# Delete existing code. -rm -rf "$TARGETDIR" - - -# Move new code into place. -mv $TEMPDIR/$LIBNAME* "$TARGETDIR" -if [ "$?" -ne "0" ] -then - echo "error: could not move expanded $LIBNAME source into place." - exit 1 -fi - -# Note version for future reference. -echo "$DESIREDURL" > "$VERSIONFILE" - -# Remove temp directory. -echo "Cleaning up." -rm -rf "$TEMPDIR" - -echo "Successfully updated $LIBNAME." diff --git a/deps/Cross-platform-deps b/deps/Cross-platform-deps deleted file mode 160000 index dd17796b2..000000000 --- a/deps/Cross-platform-deps +++ /dev/null @@ -1 +0,0 @@ -Subproject commit dd17796b2ee1257bea04aeffaec660f6c75eadf2 From 38472ffd9f7c7ddeac7925a75eb094f7c7e6bccc Mon Sep 17 00:00:00 2001 From: mcarans Date: Wed, 15 Apr 2026 10:26:02 +1200 Subject: [PATCH 4/4] Update README.md --- README.md | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/README.md b/README.md index 3bc4a6d21..b3098094d 100644 --- a/README.md +++ b/README.md @@ -169,17 +169,6 @@ or C++ with which it is interoperable. ### Troubleshooting -- If you get errors like `fatal error: jsapi.h: No such file or directory`, there was probably an issue with checking - out the submodules. - -- If you can't see any textures, try deleting the following files, and compile again although these are already excluded - from modern builds. - -```bash -rm deps/Linux-deps/include/png.h -rm deps/Linux-deps/include/pngconf.h -``` - - If you get compiler errors, you can try compiling with: ```bash @@ -191,25 +180,11 @@ make -f Makefile release OBJCFLAGS="-fobjc-exceptions -Wno-format-security" -j$( Oolite for all platforms can be built from this repository. Here is a quick guide to the source tree. -- **debian**: Files to enable automatic setup under Linux using dpkg (Debian package manager) tools - **DebugOXP**: [Debug.oxp](http://wiki.alioth.net/index.php/Debug_OXP), the expansion pack that enables console support in debug and test release builds -- **deps** - - **Cocoa-deps**: Dependencies for Mac OS X - - **Cross-platform-deps**: Dependencies for platforms other than Mac OS X - - **Linux-deps**: Dependencies for Linux on x86 and x86_64 processors - - **URLs**: URLs used for binary dependencies on Mac OS X - **Doc**: Documentation (including user guides) - **ShellScripts**: Scripts to build from source on Windows and Linux - **installers**: Files used to create various installers -- **Mac-specific**: Additional projects used only on Mac OS X - - **DataFormatters**: Debugger configurations for Xcode - - **DebugBundle**: Implements - the [Debug menu and in-app console](http://wiki.alioth.net/index.php/Debug_OXP#Mac_OS_X-specific_features) - - **OCUnitTest**: A small number of unit tests - - **Oolite-docktile:** An embedded plug-in which implements the Oolite dock menu when Oolite is not running - - **Oolite-importer**: A Spotlight importer to make saved games and OXPs searchable -- **Oolite.xcodeproj**: The OS X Xcode project to build Oolite - **Resources**: Game assets and resource files for Mac and GNUstep application bundles - **Schemata**: Plist schema files for the [OXP Verifier](http://wiki.alioth.net/index.php/OXP_howto#OXP_Verifier) - **src**: Objective-C and C sources, incuding header files @@ -218,4 +193,4 @@ guide to the source tree. - **Core**: Files that are compiled on all platforms - **SDL**: Files that are only compiled for platforms that use SDL - **tests**: A mixed bag of test cases for manual testing and ad-hoc code tests. -- **tools**: Various tools for preparing files, builds, releases etc. +- **tools**: Various historical tools for preparing files.