This repository was archived by the owner on Oct 18, 2023. It is now read-only.
File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 14
14
before_install :
15
15
- sudo add-apt-repository ppa:apokluda/boost1.53 --yes
16
16
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test --yes # libstdc++-4.8
17
- - sudo add-apt-repository ppa:george-edison55/cmake-3.x --yes
18
17
- if [ "${CXX}" == "clang++" ]; then sudo add-apt-repository --yes ppa:h-rayflood/llvm; fi # clang++-3.2
19
18
- sudo apt-get update
20
19
@@ -24,7 +23,7 @@ install:
24
23
- sudo apt-get install libboost-system1.53-dev
25
24
- sudo apt-get install libboost-regex1.53-dev
26
25
- sudo apt-get install libboost-filesystem1.53-dev
27
- - sudo apt-get install cmake
26
+ - 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
28
27
29
28
before_script :
30
29
# update compilers
Original file line number Diff line number Diff line change @@ -53,13 +53,13 @@ Building with CMake
53
53
~~~~~~~~~~~~~~~~~~~
54
54
55
55
To build the libraries and run the tests with CMake, you will need to
56
- have CMake version 2.8.10 or higher installed appropriately in your
56
+ have CMake version 3.0 or higher installed appropriately in your
57
57
system.
58
58
59
59
::
60
60
61
61
$ cmake --version
62
- cmake version 2.8.10
62
+ cmake version 3.2.2
63
63
64
64
Inside the cpp-netlib directory, you can issue the following statements to
65
65
configure and generate the Makefiles, and build the tests::
You can’t perform that action at this time.
0 commit comments