├── .gitignore ├── Makefile ├── README.md ├── boost.sh ├── boost_153.sh └── boost_154.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/boost-xcode5-iosx/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/boost-xcode5-iosx/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/boost-xcode5-iosx/HEAD/README.md -------------------------------------------------------------------------------- /boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/boost-xcode5-iosx/HEAD/boost.sh -------------------------------------------------------------------------------- /boost_153.sh: -------------------------------------------------------------------------------- 1 | ./boost.sh --version 1.53.0 --with-c++11 2 | -------------------------------------------------------------------------------- /boost_154.sh: -------------------------------------------------------------------------------- 1 | ./boost.sh --version 1.54.0 --with-c++11 2 | --------------------------------------------------------------------------------