File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1+ # [ unreleased]
2+
3+ ## Changed
4+ - Updated slick-net-config.cmake.in file to remove cmake config warning.
5+
16# [ v1.2.2] - 2026-01-13
27- Upgraded to slick-queue v1.2.2
38- Renamed repository from slick_net to slick-net (hyphenated naming follows recommended convention)
Original file line number Diff line number Diff line change 33include (CMakeFindDependencyMacro)
44
55# Find required dependencies
6- find_dependency(Boost REQUIRED COMPONENTS beast context)
7- find_dependency(OpenSSL REQUIRED)
6+ find_dependency(Boost CONFIG REQUIRED COMPONENTS beast context)
7+ find_dependency(OpenSSL CONFIG REQUIRED)
88
9- # slick-queue is fetched automatically, but vcpkg users might have it installed
10- find_package (slick-queue QUIET )
9+ find_package (slick-queue 1.2.2 CONFIG QUIET )
1110if (NOT slick-queue_FOUND)
11+ message (STATUS "Fetching slick-queue..." )
1212 include (FetchContent)
13+ # Disable slick-queue tests
1314 set (BUILD_SLICK_QUEUE_TESTS OFF CACHE BOOL "" FORCE)
1415 FetchContent_Declare(
1516 slick-queue
You can’t perform that action at this time.
0 commit comments