File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ jobs:
16
16
fail-fast : false
17
17
matrix :
18
18
vc_boost :
19
- - name : msvc-2019_boost_1710
19
+ - name : msvc-2019_boost_1730
20
20
image : ' windows-2019'
21
- boost_url : ' https://boostorg.jfrog.io/artifactory/main/release/1.71.0/source/boost_1_71_0 .tar.gz'
22
- boost_archive_name : ' boost_1_71_0 .tar.gz'
23
- boost_folder_name : ' boost_1_71_0 '
24
- boost_include_folder : ' C:\Boost\include\boost-1_71 '
21
+ boost_url : ' https://boostorg.jfrog.io/artifactory/main/release/1.71.0/source/boost_1_73_0 .tar.gz'
22
+ boost_archive_name : ' boost_1_73_0 .tar.gz'
23
+ boost_folder_name : ' boost_1_73_0 '
24
+ boost_include_folder : ' C:\Boost\include\boost-1_73 '
25
25
- name : msvc-2019_boost_1800
26
26
image : ' windows-2019'
27
27
boost_url : ' https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz'
Original file line number Diff line number Diff line change @@ -79,7 +79,11 @@ option(BUILD_EXAMPLES
79
79
find_package (Threads REQUIRED )
80
80
81
81
# find Boost
82
- find_package (Boost 1.71 REQUIRED COMPONENTS thread chrono )
82
+ if (WIN32 )
83
+ find_package (Boost 1.73 REQUIRED COMPONENTS thread chrono )
84
+ else ()
85
+ find_package (Boost 1.71 REQUIRED COMPONENTS thread chrono )
86
+ endif ()
83
87
84
88
# find OpenSSL if building WITH_OPENSSL
85
89
if (WITH_OPENSSL )
You can’t perform that action at this time.
0 commit comments