summaryrefslogtreecommitdiff
path: root/platform/ios/ios.xcworkspace
Commit message (Collapse)AuthorAgeFilesLines
* [ios] Pull in OHHTTPStubs project referenceMinh Nguyễn2016-11-141-0/+3
| | | | Removed individual OHHTTPStubs file references from the ios-tests project. Added a reference to the OHHTTPStubs project to the workspace. Link ios-tests to its iOS framework build product.
* [build] remove unneeded ios.xcscmblueprintKonstantin Käfer2016-08-181-37/+0
|
* [build] switch to CMakeKonstantin Käfer2016-08-051-1/+1
| | | | This is very much a work in progress.
* [ios, osx] Override user workspace settingsMinh Nguyễn2016-04-191-18/+0
|
* [ios] Build output goes to build/iosJohn Firebaugh2016-04-191-1/+1
|
* [ios] Force workspace-relative DerivedDataMinh Nguyễn2016-04-161-0/+18
| | | | | | A workspace places derived data under ~/Library/ by default. We need it to live under build/ for all users. Instead of a legacy-style build products directory, force a workspace-relative DerivedData directory that matches the standard Xcode 4+ layout. Share the workspace settings file that forces the setting. Note that Xcode places its build and index output one level deeper than xcodebuild does. Also fixed make ipackage-sim by conditionalizing anything related to the .dSYM file, which isn’t generated in the Debug configuration.
* [ios, osx] Shared test bundleMinh Nguyễn2016-04-161-2/+2
| | | | | | The iOS and OS X SDKs now share a non-UI test bundle. Moved the iOS UI test bundle into a uitest/ subdirectory and moved the OS X SDK tests into the darwin/ subdirectory. Upgraded KIF to v3.4.2.
* [ios] Moved KIF project out of ios-tests projectMinh Nguyễn2016-04-161-0/+3
|
* [ios] Shared Objective-C exception breakpointMinh Nguyễn2016-04-161-0/+25
| | | | It’s common enough to need a general Objective-C exception breakpoint that it should be made available to all developers by default. It’s disabled by default, since it may obscure the exception message.
* [ios] Added Xcode project for iosapp, ios-bench; workspace for ios-testsMinh Nguyễn2016-04-162-0/+50
ios.xcodeproj is an ordinary Xcode project with ordinary Xcode targets for iosapp and ios-bench, all contained in an ordinary Xcode workspace that happens to also reference the gyp-generated platform.xcodeproj. The iosapp target links to and embeds Mapbox.framework, which is a product of the gyp-generated platform.xcodeproj. ios-tests.xcodeproj is also in the workspace, enabling simultaneous debugging of KIF tests, the SDK, and core code. Moved storyboards into Base.lproj and image assets into an asset catalog. Removed iOS 6 assets from the iosapp asset catalog. Moved the original ios-bench application icon SVG into a non-project location. Removed app/Settings.bundle, which is identical to framework/Settings.bundle. Removed a broken reference to an unused header from the ios-tests project.