summaryrefslogtreecommitdiff
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
* [core] use #pragma once instead of ifdef include guardsKonstantin Käfer2016-05-252-11/+5
|
* [build] Restrict C++11 ABI check script for LinuxBruno de Oliveira Abinader2016-05-241-0/+5
|
* [build] Inline main.mk Android targets into MakefileJohn Firebaugh2016-05-231-66/+0
|
* [build] Inline main.mk linux and qt targets into MakefileJohn Firebaugh2016-05-231-58/+0
|
* [build] Inline main.mk node targets into MakefileJohn Firebaugh2016-05-231-25/+0
|
* [build] Simplify control flow in main.mkJohn Firebaugh2016-05-231-44/+29
|
* [build] Remove unnecessary exported variablesJohn Firebaugh2016-05-231-8/+8
|
* [build] Avoid variable name coupling between main.mk and configureJohn Firebaugh2016-05-231-27/+25
|
* [build] Avoid variable name coupling between main.mk and clang-tidy.shJohn Firebaugh2016-05-232-2/+4
|
* [build] Avoid variable name coupling between main.mk and collect-coverage.shJohn Firebaugh2016-05-232-9/+11
|
* [build] Avoid variable name coupling between main.mk and configure.shJohn Firebaugh2016-05-231-1/+0
|
* [build] Fix broken build on OSXThiago Marcos P. Santos2016-05-101-1/+0
|
* [Qt] Use C++11 ABI packagesThiago Marcos P. Santos2016-05-103-0/+16
| | | | | | These were causing linking errors on more recent Linux distros. Fixes #3123.
* [build] Fix parallel 'make linux' callBruno de Oliveira Abinader2016-05-041-0/+1
|
* [build] Move Qt version define to configure.shBruno de Oliveira Abinader2016-04-271-3/+0
|
* [Qt] Added qt-qml-app exampleBruno de Oliveira Abinader2016-04-271-0/+3
|
* [Qt] Added QQuickMapboxGL{,Renderer}Bruno de Oliveira Abinader2016-04-271-0/+3
|
* [Qt] Add toolchain supportThiago Marcos P. Santos2016-04-251-24/+31
| | | | Enables cross-compilation.
* [test] Run with --gtest_catch_exceptions=0John Firebaugh2016-04-221-1/+1
|
* [Qt] Build the Qt portThiago Marcos P. Santos2016-04-201-0/+17
|
* [ios, osx] Eliminate use of main.mkJohn Firebaugh2016-04-191-17/+0
|
* [build] Use `which` instead of `command`Thiago Marcos P. Santos2016-04-181-1/+1
| | | | `command` is shell buitin on Linux.
* [build] Make `run-glfw-app` not working on LinuxThiago Marcos P. Santos2016-04-181-2/+2
|
* [ios] Moved SDK from gyp into Xcode projectMinh Nguyễn2016-04-162-0/+22
| | | | | | | | | | | | | | 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.
* [ios, osx] The return of xcpretty, part II (#4676)John Firebaugh2016-04-111-2/+2
|
* [build] Refactor and simplify build systemJohn Firebaugh2016-04-078-227/+135
| | | | | | | | | | | | | | * Main gyp files are now standardized as platform/<platform>/platform.gyp. * Each platform gyp file defines appropriate loop_lib and headless_lib variables. * Each platform gyp file includes mbgl.gypi, which defines base targets which may be useful to all platforms. * CI targets are consistent across platforms: `make $(PLATFORM) && make test-$(PLATFORM)`. * Renamed the "linux" test app to "glfw". It's now built in OS X CI. * Android build flakiness is fixed. * iOS CI builds the bench and iosapp targets. * Mesa version is now in one place. * CI scripts use bash "strict mode" and correct error handling. * All build output goes to the build directory. * Removed vestigial iOS/OS X/Android Travis scripts.
* [core] fix various compilation issuesKonstantin Käfer2016-04-041-3/+3
|
* [build] Fix/simplify ios, isim, and ibench targetsJohn Firebaugh2016-04-041-2/+3
|
* [ios, osx] Replace libuv with native implementationsJohn Firebaugh2016-04-011-0/+2
|
* [gyp] Coverage only if BUILDTYPE=Debug and ENABLE_COVERAGE=1Bruno de Oliveira Abinader2016-02-211-5/+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-202-0/+40
|
* [tests] Use ENABLE_COVERAGE=1 envvar to enable coverageBruno de Oliveira Abinader2016-02-192-0/+10
| | | | This detaches coverage data collection from typical debug build.
* [tests] Added coverage report target 'check'Bruno de Oliveira Abinader2016-02-182-0/+64
| | | | | Issuing 'make check' now collects unit tests coverage data and generates a report in HTML.
* [ios, osx] Consolidate remaining files in platform/{ios,osx}John Firebaugh2016-02-121-3/+3
|
* [build] Build `offline` smoke test for LinuxThiago Marcos P. Santos2016-02-111-0/+1
|
* [core] move platform/gl.hpp to gl/gl.hppKonstantin Käfer2016-02-081-1/+1
|
* [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
|