summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDane Springmeyer <dane@mapbox.com>2014-02-12 13:15:09 -0800
committerDane Springmeyer <dane@mapbox.com>2014-02-12 13:15:09 -0800
commit7fbb33b5de38ca24b834204a8831b359203dfc06 (patch)
tree0289fb9809369ad3f9868e270947941bb2490e43 /README.md
parent359a35e60fd4e3f32c2f3fd846f2019643965154 (diff)
downloadqtlocation-mapboxgl-7fbb33b5de38ca24b834204a8831b359203dfc06.tar.gz
remove boost from readme and build system
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 3 insertions, 12 deletions
diff --git a/README.md b/README.md
index f6b8c8b118..24f97490c9 100644
--- a/README.md
+++ b/README.md
@@ -5,16 +5,16 @@ implemented in C++, targeting iOS & OS X.
## OS X
-Install boost, libpng, and [glfw3](http://www.glfw.org/docs/latest/):
+Install libpng and [glfw3](http://www.glfw.org/docs/latest/):
```
-brew install boost libpng
+brew install libpng
brew install homebrew/versions/glfw3
```
Then configure the project:
- ./configure --boost=`brew --prefix` --glfw3=`brew --prefix` --png=`brew --prefix`
+ ./configure --glfw3=`brew --prefix` --png=`brew --prefix`
See all the options by calling `./configure --help`
@@ -25,7 +25,6 @@ Usage: configure [options]
Options:
-h, --help show this help message and exit
--debug Also build debug build
- --boost=BOOST_ROOT Path to boost (defaults to /usr/local)
--glfw3=GLFW3 Path to gflw3 (defaults to using pkg-config)
--png=PNG Path to png (defaults to using pkg-config)
--png-includes=PNG_INCLUDES
@@ -45,10 +44,6 @@ Or generate a dual iOS/OS X-compatible Xcode project for `libllmr` to include as
## iOS
-Install boost:
-
- brew install boost
-
Because `libpng` isn't included in the iOS SDK, you will need to build a cross-architecture version yourself. Run `./ios/setup_libpng.sh`, which is derived from Mapnik's cross-architecture build scripts. This will also run `./configure`.
Then you can build the iOS app with make:
@@ -69,10 +64,6 @@ Install a `-std=c++11` capable compiler
sudo apt-get update
sudo apt-get install gcc-4.8 g++-4.8
-Install boost (we only need headers):
-
- sudo apt-get install libboost-dev
-
Install libpng-dev:
sudo apt-get install libpng-dev