Skip to content

Commit

Permalink
Merge pull request #90 from ctabin/cmake-min-version
Browse files Browse the repository at this point in the history
Increases minimum CMake version required
  • Loading branch information
ctabin authored Sep 19, 2020
2 parents d07a4ce + cc95a6e commit e15a60e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ before_install:
- eval "${MATRIX_EVAL}"

install:
- DEPS_DIR="${TRAVIS_BUILD_DIR}/deps"
- mkdir ${DEPS_DIR} && cd ${DEPS_DIR}
- travis_retry wget --no-check-certificate https://github.com/Kitware/CMake/releases/download/v3.18.2/cmake-3.18.2-Linux-x86_64.tar.gz
- tar -xvf cmake-3.18.2-Linux-x86_64.tar.gz > /dev/null
- mv cmake-3.18.2-Linux-x86_64 cmake-install
- PATH=${DEPS_DIR}/cmake-install:${DEPS_DIR}/cmake-install/bin:$PATH
- cd ${TRAVIS_BUILD_DIR}
- THIRD_PARTY=$HOME/third_party
- THIRD_PARTY_PREFIX=$THIRD_PARTY/install
- |
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.8.0)
cmake_minimum_required(VERSION 3.12.0)

project(libzippp VERSION 3.0.0)

Expand Down

0 comments on commit e15a60e

Please sign in to comment.