summaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* [tidy] Switched to Travis CIBruno de Oliveira Abinader2016-06-141-2/+2
| | | | Fixes https://github.com/mapbox/mapbox-gl-native/issues/5341.
* [tidy] Install mason clang-tidy if CLANG_TIDY is not setBruno de Oliveira Abinader2016-06-141-0/+2
| | | | Also added HeaderFilterRegex to .clang-tidy.
* [macos] Renamed OS X SDK to macOS SDKMinh Nguyễn2016-06-141-37/+37
| | | | Also renamed as many references to OS X as possible to macOS in documentation.
* [build] Re-enable tidy checksBruno de Oliveira Abinader2016-06-131-2/+2
|
* [build] compdb depends on node_modulesBruno de Oliveira Abinader2016-06-131-1/+1
|
* [build] Make node_modules non-parallelBruno de Oliveira Abinader2016-06-121-0/+1
|
* [build] Update compdb & tidy for Linux & OS XBruno de Oliveira Abinader2016-06-101-3/+17
|
* [Qt][build] Updated valgrind supression and make it a target for QtThiago Marcos P. Santos2016-06-091-3/+7
|
* [build] add benchmark targetKonstantin Käfer2016-06-061-1/+1
|
* [build] Fix mason submodule initializationJohn Firebaugh2016-06-031-3/+3
|
* [core] Runtime style layer APIJohn Firebaugh2016-06-021-0/+3
|
* [build] Add android-* make targets for specific ABIsJohn Firebaugh2016-06-011-2/+4
|
* 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.