Skip to content

Commit acf0e09

Browse files
authored
vcpkg uses CMake 3.14 (#35)
1 parent 6fb7a5a commit acf0e09

File tree

4 files changed

+1009
-41
lines changed

4 files changed

+1009
-41
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ before_install:
6161
- echo ${TRAVIS_OS_NAME}
6262
- |
6363
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
64-
CMAKE_URL="https://github.com/Kitware/CMake/releases/download/v3.%3Cspan%20class="x x-first x-last">15.2/cmake-3.15.2-Linux-x86_64.tar.gz"
64+
CMAKE_URL="https://github.com/Kitware/CMake/releases/download/v3.%3Cspan%20class="x x-first x-last">14.0/cmake-3.14.0-Linux-x86_64.tar.gz"
6565
mkdir cmake && travis_retry wget --no-check-certificate --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C cmake
6666
export PATH=${DEPS_DIR}/cmake/bin:${PATH}
6767
elif [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
# http://www.boost.org/LICENSE_1_0.txt)
55

66

7-
cmake_minimum_required(VERSION 3.15)
7+
cmake_minimum_required(VERSION 3.14)
88

99
project(
1010
Skyr
11-
VERSION 1.4.2
11+
VERSION 1.4.3
1212
HOMEPAGE_URL https://cpp-netlib.github.io/url
1313
DESCRIPTION "A C++ library that implements the WhatWG URL specification"
1414
LANGUAGES CXX

0 commit comments

Comments
 (0)