Skip to content

Boost include directories are now tied to targets directly #549

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 16, 2015
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Use CMake 3.x binary dist for travis
* Updated README: CMake >= 3.0 required
  • Loading branch information
wose authored and rcdailey committed Oct 11, 2015
commit 2adcf66fbfea45ffe44c7a98a0a23a297a4cf89f
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ env:
before_install:
- sudo add-apt-repository ppa:apokluda/boost1.53 --yes
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test --yes # libstdc++-4.8
- sudo add-apt-repository ppa:george-edison55/cmake-3.x --yes
- if [ "${CXX}" == "clang++" ]; then sudo add-apt-repository --yes ppa:h-rayflood/llvm; fi # clang++-3.2
- sudo apt-get update

Expand All @@ -24,7 +23,7 @@ install:
- sudo apt-get install libboost-system1.53-dev
- sudo apt-get install libboost-regex1.53-dev
- sudo apt-get install libboost-filesystem1.53-dev
- sudo apt-get install cmake
- wget -qO- http://www.cmake.org/files/v3.3/cmake-3.3.2-Linux-x86_64.tar.gz | tar xvz && sudo cp -fR cmake-3.3.2-Linux-x86_64/* /usr

before_script:
# update compilers
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ Building with CMake
~~~~~~~~~~~~~~~~~~~

To build the libraries and run the tests with CMake, you will need to
have CMake version 2.8.10 or higher installed appropriately in your
have CMake version 3.0 or higher installed appropriately in your
system.

::

$ cmake --version
cmake version 2.8.10
cmake version 3.2.2

Inside the cpp-netlib directory, you can issue the following statements to
configure and generate the Makefiles, and build the tests::
Expand Down