summaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* [android] Build ARMv8 on the `apackage` targetThiago Marcos P. Santos2016-03-171-1/+1
| | | | Follow-up of 51a3907.
* [ios] Non-embedded static frameworkMinh Nguyễn2016-03-081-0/+1
| | | | | | Added a new ifabric Make target for packaging up a static framework similar to the one released as 3.0.1. Place artwork and certificate assets inside Mapbox.bundle inside Mapbox.framework. Link SystemConfiguration in the umbrella header. Distinguish between the framework bundle and the resources bundle. For the dynamic frameworks and embedded static frameworks, the two are the same; for the non-embedded static framework, the latter resides inside the former.
* [gyp] Coverage only if BUILDTYPE=Debug and ENABLE_COVERAGE=1Bruno de Oliveira Abinader2016-02-211-0/+1
| | | | | | | | Coverage compiler and linker flags are used only when (1) in debug build and (2) with ENABLE_COVERAGE set to 1. Besides, because OS X's libtool is unable to understand '--coverage', this linker flag is only used genrating executable targets. Also, using 'link_settings' to specify linker options and separate instructions for OSX and Linux.
* [tests] Upload coverage reports to coveralls.ioBruno de Oliveira Abinader2016-02-201-0/+1
|
* [build] make clean shouldn't delete Xcode projectsJohn Firebaugh2016-02-191-1/+1
| | | | Fixes #2493
* [build] Remove obsolete directories from make cleanJohn Firebaugh2016-02-191-6/+1
|
* [tests] Use ENABLE_COVERAGE=1 envvar to enable coverageBruno de Oliveira Abinader2016-02-191-1/+1
| | | | This detaches coverage data collection from typical debug build.
* [tests] Added coverage report target 'check'Bruno de Oliveira Abinader2016-02-181-0/+3
| | | | | Issuing 'make check' now collects unit tests coverage data and generates a report in HTML.
* [build] Build `offline` smoke test for LinuxThiago Marcos P. Santos2016-02-111-0/+1
|
* Add binary for smoke-testing offline downloadsJohn Firebaugh2016-02-101-4/+4
|
* [ios] Split API index from package readmeMinh Nguyễn2016-01-221-1/+1
| | | | The API index page serves a different purpose than the readme. It doesn’t need installation instructions, but it does need a brief What’s New section.
* [ios] make idocumentMinh Nguyễn2016-01-221-0/+1
| | | | Split API documentation generation into a separate make target that can be run independently of building the SDK.
* [ios] Refactored build scriptsMinh Nguyễn2016-01-221-3/+4
| | | | | | package.sh now recognizes several environment variables through make that influence the build settings and targets. Info.plist variables are substituted with the correct values in both the static and dynamic frameworks. Fixes #3656.
* [ios] Converted iOS SDK into dynamic frameworkMinh Nguyễn2016-01-221-3/+1
| | | | | | | | | | make iproj now produces a target that pulls together static libraries like core and platform-ios into a real dynamic framework. iosapp is pretty much just a regular iOS application that links Mapbox.framework (except for the inclusion of default_styles.hpp). iosapp runs fine in the Simulator and on a device, and the same is true for any application linking against Mapbox.framework. The ipackage target produces both a Bitcode-disabled static framework and a Bitcode-enabled dynamic framework, eliminating the need for a separate framework.sh. It disables code signing, since that happens on copy when the framework is embedded inside the application bundle. It also merges the device and simulator builds into a single fat framework. Also bumped itest minimum deployment target to iOS 8.0, the first version that supports linking frameworks. Fixes #828.
* [android] Fixed x86_64 crash on startup: no implementation previously for ↵Anton Malinskiy2016-01-071-1/+1
| | | | cache's get/bind by chrono's seconds for x86_64. Explicitly cast to int64_t
* [osx] Unit testsMinh Nguyễn2015-12-241-1/+2
| | | | Added an XCTest bundle to the osxsdk scheme. It contains some basic tests of shared iOS/OS X code.
* [core] Merge SQLiteCache into the platform libraryJohn Firebaugh2015-12-221-3/+3
| | | | OfflineFileSource will depend on SQLite too.
* Fixed make run-osx, make run-xosxMinh Nguyễn2015-12-221-2/+2
|
* [osx] make osx with XcodeMinh Nguyễn2015-12-211-4/+4
| | | | | | make osx now builds with Xcode instead of make, because building the OS X SDK and osxapp requires Xcode-specific build settings. make xosx and make nosx are now aliases to make osx. Fixes #3293.
* [ios, osx] Drop xcprettyJohn Firebaugh2015-12-211-1/+0
| | | | It's buggy and hides necessary diagnostics.
* Move platform scripts into platformsJohn Firebaugh2015-12-161-8/+8
|
* [android] Move into platform subdirectoryJohn Firebaugh2015-12-161-4/+8
|
* [osx] 'make run-linux' should work on OSXBruno de Oliveira Abinader2015-12-151-2/+2
|
* [osx] Build framework based on static libraryMinh Nguyễn2015-12-131-0/+1
|
* [osx] Rewrote platform-osx and osxappMinh Nguyễn2015-12-131-1/+7
| | | | | | | | | | | | | | platform-osx now vends a real NSView subclass, MGLMapView, that is readily embedded inside a Cocoa application for OS X. MGLMapView is backed by an NSOpenGLLayer for optimal performance and integration with other layer-backed views. It supports keyboard shortcuts and several gestures and hosts attribution, zooming, and rotation controls as subviews. osxapp is now a bona fide Cocoa application that embeds MGLMapView inside a XIB. osxapp has preferences and a share button for tight integration with custom styles. Enabling asynchronous rendering would be more consistent with iOS but increases CPU usage so much, even when idle, that it isn’t worth any performance gain. The bigger issue is that VAOs aren’t being used. make xpackage creates a static library similar to the one created by make ipackage. make clean cleans additional places where build output ends up. The OS X minimum deployment target has been increased from 10.9 to 10.10. osxapp’s window has a full size content view, which requires 10.10. Lightweight generics require iOS 9+ and OS X 10.11 regardless, because it was only in that release that Foundation collection classes started adopting lightweight generics. Shuffled files around and refactored annotations so that iOS and OS X share a good chunk of the annotations code, which now takes advantage of polymorphism. MGLMapView can now display annotations but cannot yet select them. In osxapp, a long press drops a pin, and so does the map view’s context menu. Annotations have NSPopovers as callouts, and their view controllers can be customized. Annotation image alignment rects are respected for hit testing purposes and for positioning the callout anchor. Callouts in osxapp demonstrate the use of bindings to keep callouts in sync with underlying model objects.
* [node] don't go through npm to debug in XcodeKonstantin Käfer2015-12-091-0/+3
|
* [build] Add clang-tidy to TravisKonstantin Käfer2015-12-031-0/+3
|
* [build] add make target "tidy" for running clang-tidyKonstantin Käfer2015-12-031-0/+1
|
* [build] add ninja + compilation database supportKonstantin Käfer2015-12-031-1/+6
|
* refs #3045: fix up targetJustin R. Miller2015-11-161-1/+1
| | | | [skip ci]
* static framework target for iOSJustin R. Miller2015-11-161-0/+1
|
* Publish Bitcode-less build for Xcode 6.4Minh Nguyễn2015-11-111-1/+2
| | | | | | Publish a Release-configuration, symbol-laden, Bitcode-less build in tandem with the other builds. Fixes #2332.
* [node] Fixes 'make xnode' to configure HOST_SLUG.gypiMike Morris2015-11-051-1/+1
| | | | | Adds node-gyp to dev-dependencies to support 'make xnode' on Node v0.10.x Ignores -Wnested-anon-types around v8.h includes.
* [node] create `npm test` and `npm run test-suite` targetsKonstantin Käfer2015-10-261-1/+5
|
* [node] make task for building node via XcodeMike Morris2015-10-261-0/+3
|
* [android] Move android filesLeith Bade2015-10-251-5/+4
| | | | Fixes #2032
* Fix build with Crashlytics NDK on 64bitLeith Bade2015-09-241-1/+1
|
* Add Crashlytics NDK to AndroidLeith Bade2015-09-231-1/+1
| | | | Closes #2107
* fix Makefile clean to clean ./android/java/MapboxGLAndroidSDK/build tooBastien Mayard2015-09-161-1/+1
|
* refs #1956: remove all Android 64-bit ABI's for nowJustin R. Miller2015-09-041-3/+3
|
* `make android-all -> make apackage` to be more in line with iOS distributionJustin R. Miller2015-09-041-4/+4
|
* 'make node' compiles!Mike Morris2015-08-251-0/+4
|
* Revert "PLATFORM=node make node"Mike Morris2015-08-241-4/+0
| | | | This reverts commit cef04fcfa7502b8af80100e06bbc560a70eca3ef.
* PLATFORM=node make nodeMike Morris2015-08-211-0/+4
|
* explicitly tell make that the subcommand is also makeKonstantin Käfer2015-08-191-1/+1
| | | | it seems that some make versions can't correctly detect that the subcommand is also a make and pass on the required options if the invocation is expanded from a variable. prepending `+` makes this explicit
* Replace deprecated gradle --parallel-threads flagLeith Bade2015-08-131-1/+1
|
* Bring run-linux targets backThiago Marcos P. Santos2015-08-051-1/+4
|
* Make build system architecture agnostic to remove Android special caseKonstantin Käfer2015-08-041-189/+65
|
* fixes #1650: default to no symbols for release builds, but build bothJustin R. Miller2015-06-171-0/+3
|
* squash of #1655: shape annotations support for core & iOSJustin R. Miller2015-06-151-4/+7
|