diff options
author | Brent Cook <busterb@gmail.com> | 2020-05-01 04:09:57 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2020-05-01 04:09:57 -0500 |
commit | 1c3377bac0a55e6a5e86e25556bf1635bb1c7bdb (patch) | |
tree | 13dcaf406563582096b639cc20d7d671f46bb52f | |
parent | 4d07b727d2785d6387e69bd3a6848ea95c42050a (diff) | |
download | portable-1c3377bac0a55e6a5e86e25556bf1635bb1c7bdb.tar.gz portable-1c3377bac0a55e6a5e86e25556bf1635bb1c7bdb.tar.bz2 portable-1c3377bac0a55e6a5e86e25556bf1635bb1c7bdb.zip |
bump cmake and appveyor build environment
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | appveyor.yml | 19 |
2 files changed, 10 insertions, 11 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index cd35af2..fb36210 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -1,4 +1,4 @@ | |||
1 | cmake_minimum_required (VERSION 3.15.7) | 1 | cmake_minimum_required (VERSION 3.16.4) |
2 | include(CheckFunctionExists) | 2 | include(CheckFunctionExists) |
3 | include(CheckSymbolExists) | 3 | include(CheckSymbolExists) |
4 | include(CheckLibraryExists) | 4 | include(CheckLibraryExists) |
diff --git a/appveyor.yml b/appveyor.yml index 8ac2045..3d11467 100644 --- a/appveyor.yml +++ b/appveyor.yml | |||
@@ -1,25 +1,24 @@ | |||
1 | image: | 1 | image: |
2 | - Visual Studio 2015 | 2 | - Visual Studio 2019 |
3 | #- Visual Studio 2017 | ||
4 | 3 | ||
5 | environment: | 4 | environment: |
6 | PATH: C:\msys64\usr\bin;C:\msys64\mingw64\bin;C:\Windows\System32;C:\Windows;%PATH% | 5 | PATH: C:\msys64\usr\bin;C:\msys64\mingw64\bin;C:\Windows\System32;C:\Windows;%PATH% |
7 | 6 | ||
8 | matrix: | 7 | matrix: |
9 | - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 | 8 | - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 |
10 | GENERATOR: Visual Studio 14 2015 Win64 | 9 | GENERATOR: Visual Studio 16 2019 Win64 |
11 | CONFIG: Release | 10 | CONFIG: Release |
12 | SHARED_LIBS: ON | 11 | SHARED_LIBS: ON |
13 | - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 | 12 | - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 |
14 | GENERATOR: Visual Studio 14 2015 | 13 | GENERATOR: Visual Studio 16 2019 |
15 | CONFIG: Release | 14 | CONFIG: Release |
16 | SHARED_LIBS: ON | 15 | SHARED_LIBS: ON |
17 | - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 | 16 | - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 |
18 | GENERATOR: Visual Studio 14 2015 Win64 | 17 | GENERATOR: Visual Studio 16 2019 Win64 |
19 | CONFIG: Release | 18 | CONFIG: Release |
20 | SHARED_LIBS: OFF | 19 | SHARED_LIBS: OFF |
21 | - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 | 20 | - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 |
22 | GENERATOR: Visual Studio 14 2015 | 21 | GENERATOR: Visual Studio 16 2019 |
23 | CONFIG: Release | 22 | CONFIG: Release |
24 | SHARED_LIBS: OFF | 23 | SHARED_LIBS: OFF |
25 | 24 | ||