summaryrefslogtreecommitdiff
path: root/next
Commit message (Collapse)AuthorAgeFilesLines
* [core] Add SourceFeatureState class to handle feature statesJuha Alanen2019-09-181-0/+2
|
* [build] Add simple instructionsThiago Marcos P. Santos2019-09-171-0/+42
|
* [build] Rewrite our CMake buildsystemThiago Marcos P. Santos2019-09-1714-0/+2231
- Try as much as possible not to use explicit compiler flags, relying on CMake to do the job in a portable away. - Build mbgl-core as a single static library and leverage lto as much as possible. - Support a MinSizRel build for other platforms. - Make GLFW and Node a client of mbgl-core public interface. - Same for the offline tool and static render tool. - Use only target settings (do not pollute the global scope) - Confine core code in a single file. - Confine platform code inside a single include (exception being Qt that needs AUTOMOC before adding the targets) - Align the Android build with the Android toolchain file.