summaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* [android] Rename OS X SDK to macOS SDK in Android 4.1 release branchMinh Nguyễn2016-06-161-31/+43
| | | | | | Fixes #5382 Also renamed as many references to OS X as possible to macOS in documentation.
* Revert "[build] Use 'npm update --dev' to install devDependencies"Bruno de Oliveira Abinader2016-05-261-1/+1
| | | | This reverts commit f4ebda09bea82146a0754d319b031cf62c0023e1.
* [build] Use 'npm update --dev' to install devDependenciesBruno de Oliveira Abinader2016-05-261-1/+1
|
* [core] Share shaders with gl-jsJohn Firebaugh2016-05-251-5/+5
|
* [build] Move express dependency to package.jsonJohn Firebaugh2016-05-251-7/+4
|
* [build] Switch default BUILDTYPE to DebugJohn Firebaugh2016-05-241-1/+1
|
* [build] Use `test-$(HOST_PLATFORM)` as default make targetJohn Firebaugh2016-05-241-2/+1
|
* [build] Make gyp commands more consistentJohn Firebaugh2016-05-241-11/+13
|
* [build] Add appropriate platform.gyp dependenciesJohn Firebaugh2016-05-241-6/+6
|
* [build] Introduce CONFIG_DEPENDENCIESJohn Firebaugh2016-05-241-6/+8
|
* [build] Add GYP_DEPENDENCIES to all appropriate targetsJohn Firebaugh2016-05-241-5/+5
|
* [build] Fix Qt build for OS XBruno de Oliveira Abinader2016-05-241-1/+1
|
* [build] Inline main.mk Android targets into MakefileJohn Firebaugh2016-05-231-16/+21
|
* [build] Inline main.mk linux and qt targets into MakefileJohn Firebaugh2016-05-231-49/+65
|
* [build] Inline main.mk node targets into MakefileJohn Firebaugh2016-05-231-6/+16
|
* [build] Avoid variable name coupling between main.mk and configureJohn Firebaugh2016-05-231-2/+2
|
* [build] Move `rm -rf node_modules` to `make distclean`John Firebaugh2016-05-201-2/+2
|
* [osx] Automate framework packagingMinh Nguyễn2016-05-101-0/+3
| | | | Added a package script and make rule that parallels the iOS SDK package script and make rule, but with far fewer intricacies.
* [osx] Added OS X SDK documentation targetMinh Nguyễn2016-05-101-0/+3
| | | | | | | | Added a target, script, and make rule for generating OS X SDK documentation with jazzy, along with a docset cover page. Switched the umbrella header from framework header syntax to user header syntax so SourceKit can find all the headers. Fixes #4871.
* Respect V arg to make to disable xcpretty (#4881)Dane Springmeyer2016-04-271-4/+10
|
* [Qt] Added qt-qml-app exampleBruno de Oliveira Abinader2016-04-271-0/+8
|
* node-v3.1.2node-v3.1.2Mike Morris2016-04-261-1/+2
|
* [ios] Only convert encoding of files generated by genstringsMinh Nguyễn2016-04-241-2/+2
| | | | Followup to #4783: fixed an issue causing make genstrings to reconvert a UTF-8-encoded file from UTF-16 to UTF-8, garbling it.
* [ios] Streamlined resource bundlingMinh Nguyễn2016-04-241-4/+1
| | | | | | | | Added a target that produces Mapbox.bundle. Replaced $BUNDLE_RESOURCES and $PLACE_RESOURCE_BUNDLES_OUTSIDE_FRAMEWORK with a single variable, $SELF_CONTAINED, that determines whether the output static framework is self-contained – that is, whether it contains Mapbox.bundle, Settings.bundle, and LICENSE.md. Eliminated the ability to produce a static framework that has the same layout as a dynamic framework. Now, resources are always in Mapbox.bundle; self-containment only determines where that bundle resides. Added a separate source Info.plist to be placed in both the static framework and its resource bundle, but only after we give the build system a chance to expand variables within it. Now nearly all the Info.plist keys are filled in by the build system rather than using plutil in package.sh.
* [ios, osx] Made OS X SDK localizableMinh Nguyễn2016-04-241-6/+8
| | | | Replaced the iOS-specific ilocalize make rule with a genstrings make rule that creates iOS, OS X, and shared strings files. Moved the override English .stringsdict file under darwin/resources/. Made the default OS X callout view XIB localizable. Made some hard-coded strings in the OS X SDK source localizable.
* [ios, osx] Made localizable strings unique; unlocalized iosappMinh Nguyễn2016-04-241-3/+2
| | | | | | Assigned unique IDs to localizable English strings in code. Made iosapp non-localizable. For the time being, it isn’t worth the trouble to localize more strings for this demo application than for the SDK itself.
* [ios, osx] Corrected clock, coordinate formatsMinh Nguyễn2016-04-241-1/+2
| | | | | | | | Long unit style isn’t intended to be spelled out, so the clock and coordinate direction formatters now use numerals for long unit style, differing from medium unit style in less drastic ways. The locale no longer needs to be exposed, since it’ll always match the overall string’s locale. Added support to the coordinate formatter for different unit styles. Made minutes and seconds of arc optional. Maintain strings for darwin/ formatter classes in a separate Foundation strings table that can be shared between the iOS and OS X SDKs. Added an English .stringsdict override that correctly pluralizes units. Capitalize osxapp window titles, now that they spell out the directions.
* [ios] Made SDK and iosapp localizableMinh Nguyễn2016-04-241-0/+6
| | | | | | | | | | Made storyboards and strings throughout the SDK and iosapp localizable. Replaced the compass image with an unlabeled image. Draw a localizable string atop it at runtime. Redefined NSLocalizedString() and NSLocalizedStringFromTable() macros to look at the SDK bundle rather than the main application bundle. This redefinition has no effect on the host application, because it’s in an internal header. That header must be included in all files that contain localizable strings. See NSBundle+MGLAdditions.h for a full explanation. Added a make rule that runs genstrings and ensures UTF-8 output (since genstrings insists on UTF-16). Use MGLCoordinateFormatter in iosapp for dropped pin callouts. Rely on subclasses of MGLPointAnnotation instead of annotation titles to distinguish between different kinds of point annotations.
* [ios] Only build static framework for FabricMinh Nguyễn2016-04-241-1/+1
|
* [build] Depend on directories, so that projects are regenerated when files ↵John Firebaugh2016-04-221-2/+6
| | | | are added or removed (#4810)
* [Qt] Build the Qt portThiago Marcos P. Santos2016-04-201-0/+18
|
* [ios, osx] Override user workspace settingsMinh Nguyễn2016-04-191-1/+7
|
* [ios] Build output goes to build/iosJohn Firebaugh2016-04-191-5/+4
|
* [osx] Build output goes to build/osxJohn Firebaugh2016-04-191-5/+4
|
* [ios, osx] Eliminate use of main.mkJohn Firebaugh2016-04-191-6/+27
|
* [build] `make clean` can now remove build directory wholesaleJohn Firebaugh2016-04-181-2/+2
|
* [osx] Moved SDK from gyp into Xcode projectMinh Nguyễn2016-04-161-11/+12
| | | | | | | | Added a new Cocoa dynamic framework target target to the main OS X Xcode project. The target is based on the template provided by Xcode. It contains headers and source files in the darwin/ and osx/ subdirectories. Headers are explicitly marked public or project-internal instead of implicitly by subdirectory. Removed the osxsdk target from platform.gypi. The SDK target has a few dependencies that are managed by mason. Transform the config.gypi generated by configure into an .xcconfig file that Xcode uses to fill in compiler and linker flags. Added a CI scheme that builds the All aggregate target generated by gyp and the osxapp and SDK test targets.
* [osx] Added Xcode project for osxappMinh Nguyễn2016-04-161-1/+3
| | | | | | | | osx.xcodeproj is an ordinary Xcode project with an ordinary Xcode target for osxapp, contained in an ordinary Xcode workspace that happens to also reference the gyp-generated platform.xcodeproj. The osxapp target links to and embeds Mapbox.framework, which is a product of the gyp-generated platform.xcodeproj. Moved XIBs into Base.lproj and icons into an asset catalog. Shared an Objective-C exception breakpoint, disabled by default.
* [ios] Force workspace-relative DerivedDataMinh Nguyễn2016-04-161-1/+4
| | | | | | 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] Build for 64-bit simulatorMinh Nguyễn2016-04-161-2/+2
|
* [ios] Specify simulator deviceMinh Nguyễn2016-04-161-2/+2
| | | | The default is iPhone 4 running iOS 8.1, which doesn’t seem to be the intended device.
* [ios] Fixed make test-iosMinh Nguyễn2016-04-161-2/+2
| | | | | | For some reason, the SDK tests are less accurate when run on the command line than when run in Xcode or on OS X. Also fixed unused variable warnings in the tests.
* [ios] Run SDK tests on CIMinh Nguyễn2016-04-161-0/+5
| | | | Added SDK tests to make test-ios rule. Disabled code coverage.
* [ios] Build CI-specific scheme in CIMinh Nguyễn2016-04-161-2/+3
| | | | The new scheme builds both the All aggregate target generated by gyp and the iosapp target.
* [ios] Moved SDK from gyp into Xcode projectMinh Nguyễn2016-04-161-1/+1
| | | | | | | | | | | | | | Added a new Cocoa Touch dynamic framework target and Cocoa Touch static library target to the main iOS Xcode project. The targets are based on the templates provided by Xcode. They contain headers and source files in the darwin/ and ios/ subdirectories. Headers are explicitly marked public or project-internal instead of implicitly by subdirectory. The SDK targets have a few dependencies that are managed by mason. Transform the config.gypi generated by configure into an .xcconfig file that Xcode uses to fill in compiler and linker flags. Removed the iossdk target from platform.gypi and pared down the platform-lib target. make iproj opens the overall Xcode workspace instead of just the core project. Resolved some warnings that are only now appearing because we’re using the standard warning and error flags instead of the pedantic and somewhat inappropriate flags that were forced by the gyp configuration files. Removed a console message informing developers of a long-ago deleted delegate method; the message was triggering a “selector not found” warning. Conditionalized some deprecated symbol usage that’s still needed for the static framework but not the dynamic framework, due to differing minimum deployment targets. Added a build phase to the static library target that copies headers for use with the static library itself. This would allow us to potentially include a header in the dynamic framework but not the static library and vice-versa. Updated the changelog to note that unused SVG files have been removed from the distribution.
* [osx] Yet another attempt at getting crash tracesJohn Firebaugh2016-04-121-1/+2
|
* [ios] Build only i386John Firebaugh2016-04-111-1/+3
|
* [ios] Use the same build configuration for `make ios` and `make test-ios`John Firebaugh2016-04-111-7/+6
|
* [ios, osx] The return of xcpretty, part II (#4676)John Firebaugh2016-04-111-4/+4
|
* [osx] Add remaining gypi dependencies to MakefileJohn Firebaugh2016-04-111-1/+1
|