Skip to content

Commit 0d2cbdf

Browse files
committed
BLD: Fix C++ client dependency upgrade
1 parent 1a44c80 commit 0d2cbdf

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 0.32.0 - 2025-03-25
3+
## 0.32.0 - 2025-04-01
44

55
### Enhancements
66
- Upgraded default date version to 3.0.3

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ if(${PROJECT_NAME_UPPERCASE}_USE_EXTERNAL_HTTPLIB)
163163
find_package(httplib REQUIRED)
164164
endif()
165165
else()
166-
set(httplib_version 0.14.3)
166+
set(httplib_version 0.20.0)
167167
if(CMAKE_VERSION VERSION_LESS 3.24)
168168
FetchContent_Declare(
169169
httplib
@@ -195,7 +195,7 @@ if(${PROJECT_NAME_UPPERCASE}_USE_EXTERNAL_DATE)
195195
find_package(date REQUIRED)
196196
endif()
197197
else()
198-
set(date_version 3.0.1)
198+
set(date_version 3.0.3)
199199
if(CMAKE_VERSION VERSION_LESS 3.24)
200200
FetchContent_Declare(
201201
date_src

tests/cmake_import/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ add_test(
1313
${CMAKE_COMMAND}
1414
-G "${CMAKE_GENERATOR}"
1515
-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}
16-
-Ddatabento_DIR=${CMAKE_CURRENT_BINARY_DIR}/pkg/lib/cmake/databento
16+
-Ddatabento_DIR=${CMAKE_CURRENT_BINARY_DIR}/pkg/${CMAKE_INSTALL_LIBDIR}/cmake/databento
1717
-Dnlohmann_json_DIR=${nlohmann_json_BINARY_DIR}
18-
-Ddate_DIR=${CMAKE_CURRENT_BINARY_DIR}/pkg/lib/cmake/date
19-
-Dhttplib_DIR=${CMAKE_CURRENT_BINARY_DIR}/pkg/lib/cmake/httplib
18+
-Ddate_DIR=${CMAKE_CURRENT_BINARY_DIR}/pkg/${CMAKE_INSTALL_LIBDIR}/cmake/date
19+
-Dhttplib_DIR=${CMAKE_CURRENT_BINARY_DIR}/pkg/${CMAKE_INSTALL_LIBDIR}/cmake/httplib
2020
${CMAKE_CURRENT_SOURCE_DIR}/project
2121
)
2222
# Build test project

0 commit comments

Comments
 (0)