summaryrefslogtreecommitdiff
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
* [core] Fix typo in version-specific host defaults pathBruno de Oliveira Abinader2015-12-231-1/+1
|
* [core] Fix build script pathsBruno de Oliveira Abinader2015-12-231-4/+4
|
* [core] Merge SQLiteCache into the platform libraryJohn Firebaugh2015-12-221-2/+1
| | | | OfflineFileSource will depend on SQLite too.
* [ios, osx] Drop xcprettyJohn Firebaugh2015-12-212-7/+2
| | | | It's buggy and hides necessary diagnostics.
* Move platform scripts into platformsJohn Firebaugh2015-12-1641-1195/+7
|
* [android] Move into platform subdirectoryJohn Firebaugh2015-12-161-3/+3
|
* [osx] Only build osxapp on TravisMinh Nguyễn2015-12-151-6/+0
| | | | | | Building osxapp means building the SDK, so building the SDK independently is wasteful. Fixes #3313.
* [core] change RapidJSON usage to use CrtAllocator and bump GeoJSON VTKonstantin Käfer2015-12-144-4/+4
|
* [ios] Strip OS X–specific APIs from iOS documentationMinh Nguyễn2015-12-131-0/+4
| | | | appledoc can’t understand conditional compilation. This is the best we can do until we move to Jazzy.
* [osx] Align build settings with Xcode framework project templateMinh Nguyễn2015-12-131-2/+4
| | | | In particular, -Os yields significant size improvements in Release.
* [osx] Moved Mapbox.{h,m} into framework proper; set version variablesMinh Nguyễn2015-12-131-15/+2
|
* [osx] Build framework based on static libraryMinh Nguyễn2015-12-131-31/+21
|
* [osx] Rewrote platform-osx and osxappMinh Nguyễn2015-12-133-0/+87
| | | | | | | | | | | | | | 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.
* [test] update test suite to include more comprehensive GeoJSON testsKonstantin Käfer2015-12-114-4/+4
|
* [build] make sure we're building the config file for node Xcode projectsKonstantin Käfer2015-12-111-1/+1
|
* [core] upgrade to GeoJSON VT 3.0.0Konstantin Käfer2015-12-104-4/+4
|
* [core] don't rebuild shaders unless they changeKonstantin Käfer2015-12-101-80/+26
|
* [node] don't go through npm to debug in XcodeKonstantin Käfer2015-12-093-9/+6
|
* [build] use ccacheKonstantin Käfer2015-12-071-0/+27
|
* fixes #3181: move from vendored lib to frameworkJustin R. Miller2015-12-072-3/+4
| | | | | | - Add license file to framework build step to satisfy CocoaPods linting. - Log version when rolling framework (refs #3046). - fixes #1426: get rid of dummy file since we make our own framework.
* [build] Add clang-tidy to TravisKonstantin Käfer2015-12-032-0/+19
|
* [build] add make target "tidy" for running clang-tidyKonstantin Käfer2015-12-032-3/+30
|
* [build] add ninja + compilation database supportKonstantin Käfer2015-12-031-0/+17
|
* [core] Only android needs libzipJohn Firebaugh2015-12-012-2/+0
|
* [node] simpler PACKAGE_JSON_VERSIONMike Morris2015-12-012-7/+1
|
* Merge branch 'release-ios-v3.0.0'Justin R. Miller2015-11-301-1/+1
|\
| * show current version changelog section in docs & link externally to fullJustin R. Miller2015-11-231-1/+1
| | | | | | | | | | | | This is going to fail and output nothing for -pre and -rc tags for now until #3046 is addressed. We can't yet grab those but still have final releases sort after them.
| * refs #2380: plop Settings.bundle inside of framework distributionJustin R. Miller2015-11-181-0/+3
| |
| * static framework target for iOSJustin R. Miller2015-11-161-0/+32
| |
* | [test] Add pixelmatch; use in annotation testsJohn Firebaugh2015-11-253-0/+17
| |
* | reduce framework binary size with more strippingJustin R. Miller2015-11-231-0/+1
| |
* | refs #2380: plop Settings.bundle inside of framework distributionJustin R. Miller2015-11-181-0/+3
| |
* | [android] Bring back OkHTTPLeith Bade2015-11-172-3/+1
| | | | | | | | | | | | | | Update http_request_android.cpp for changes in #2727 Fix crash caused by calling both onFailure and onReponse in the same request Fixes #2856 Fixes #2400
* | static framework target for iOSJustin R. Miller2015-11-161-0/+32
|/
* Publish Bitcode-less build for Xcode 6.4Minh Nguyễn2015-11-112-1/+14
| | | | | | Publish a Release-configuration, symbol-laden, Bitcode-less build in tandem with the other builds. Fixes #2332.
* Updated references to old build docsMinh Nguyễn2015-11-091-1/+1
| | | | Fixes #2871.
* [iOS] Fetch tags on install, not ipackageMinh Nguyễn2015-11-092-1/+2
| | | | | | This change removes a git command that requires a network connection from the ipackage target. It was used to ensure that CI has a tag to version the appledoc documentation with, so the same command has been added to install.sh, where a network connection is otherwise expected. Fixes #2320.
* [node] only upload render test results on linuxnode-v2.0.0-pre.13Mike Morris2015-11-051-1/+1
| | | | They don't run on OS X because Travis OS X boxes don't have GPUs.
* [node] autopublish node-pre-gyp binaryMike Morris2015-11-052-1/+8
| | | | If $TRAVIS_TAG matches with node-v${PACKAGE_JSON_VERSION}.
* [core] move mbgl.gyp to gyp directoryMike Morris2015-11-041-5/+5
| | | | | So npm won't clobber binding.gyp, refs https://github.com/npm/npm/issues/10243
* [node] enable npm to build mapbox-gl-native package from sourceLucas Wojciechowski2015-11-042-14/+35
| | | | | | This reverts commit 311bf93abe9f815668e8e0a779c87c3eb5c1199d. more explicit require paths in tests
* Force Bitcode in make ipackageMinh Nguyễn2015-11-021-0/+2
| | | | `make ipackage` now performs a Bitcode-enabled archive build for devices.
* [core] mason geojsonvt-2.1.6.3Mike Morris2015-11-027-11/+16
| | | | | | | | | | | | | - [osx] set -fvisibility-inlines-hidden in gyp/common.gypi to silence mismatched visibility linker warnings - [linux] set cxx_host in GYP_FLAGS to set -fabi-version=0 on gcc builds to use clang-built mason binaries - [ios] update symbol visibility for iOS tests - [ios] link libgeojsonvt.a in iOS tests xcodeproj - add libgeojsonvt.a to General -> Linked Frameworks and Libraries - add mason_packages (recursive) to Build Settings -> Library Search Path - [ios] add libuv and geojsonvt first in iOS libtool smush to ensure symbols are found by later compilation units where they are undefined
* don't use xcprettyJustin R. Miller2015-11-021-2/+2
|
* [core] Remove bundled styles.Leith Bade2015-10-306-18/+0
| | | | Fixes #2239
* [core] Fix gdb check for CIJohn Firebaugh2015-10-271-1/+1
|
* more explicitly name build configs & do Debug for sim/testingJustin R. Miller2015-10-271-0/+3
|
* [node] create `npm test` and `npm run test-suite` targetsKonstantin Käfer2015-10-263-0/+111
|
* [node] include node headers in binding.gyp, undef libuv_cflagsMike Morris2015-10-261-2/+2
|
* [node] make task for building node via XcodeMike Morris2015-10-261-0/+14
|