Skip to content

Commit 81cc52b

Browse files
authored
Boost dependency upgraded to 1.73 on Windows. (#1113)
1 parent 84857d3 commit 81cc52b

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/nightly-windows.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
vc_boost:
19-
- name: msvc-2019_boost_1710
19+
- name: msvc-2019_boost_1730
2020
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'
2525
- name: msvc-2019_boost_1800
2626
image: 'windows-2019'
2727
boost_url: 'https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz'

CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,11 @@ option(BUILD_EXAMPLES
7979
find_package(Threads REQUIRED)
8080

8181
# 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()
8387

8488
# find OpenSSL if building WITH_OPENSSL
8589
if (WITH_OPENSSL)

0 commit comments

Comments
 (0)