Skip to content

Commit

Permalink
Update/libs (#149)
Browse files Browse the repository at this point in the history
* Add lsquic

Signed-off-by: kamilsa <kamilsa16@gmail.com>

* Add boost 1.86.0

Signed-off-by: kamilsa <kamilsa16@gmail.com>

* Add rocksdb 9.6.1

Signed-off-by: kamilsa <kamilsa16@gmail.com>

* Fix adding rocksdb 9.6.1

Signed-off-by: kamilsa <kamilsa16@gmail.com>

* Add empty line

Signed-off-by: kamilsa <kamilsa16@gmail.com>

---------

Signed-off-by: kamilsa <kamilsa16@gmail.com>
  • Loading branch information
kamilsa authored Oct 10, 2024
1 parent 705bd30 commit 6a09597
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmake/configs/default.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if(MINGW)
# https://github.com/boostorg/build/issues/301
hunter_default_version(Boost VERSION 1.64.0)
else()
hunter_default_version(Boost VERSION 1.85.0)
hunter_default_version(Boost VERSION 1.86.0)
endif()

hunter_default_version(Boost.DI VERSION 1.1.0-p1)
Expand Down Expand Up @@ -361,6 +361,7 @@ hunter_default_version(libzip VERSION 1.5.2-d68a667-p0)
hunter_default_version(lmdb VERSION 0.9.21-p2)
hunter_default_version(lmdbxx VERSION 0.9.14.0)
hunter_default_version(log4cplus VERSION 1.2.0-p0)
hunter_default_version(lsquic VERSION 4.0.9-qdrvm-1)
hunter_default_version(lz4 VERSION 1.8.0-p2)
hunter_default_version(lzma VERSION 5.2.3-p4)
hunter_default_version(magnum VERSION 2019.01)
Expand Down Expand Up @@ -456,7 +457,7 @@ hunter_default_version(re2 VERSION 2017.11.01-p0)
hunter_default_version(readline VERSION 6.3)
hunter_default_version(recastnavigation VERSION 1.4-p0)
hunter_default_version(renderproto VERSION 0.11.1)
hunter_default_version(rocksdb VERSION 9.4.0)
hunter_default_version(rocksdb VERSION 9.6.1)
hunter_default_version(ros VERSION 1.14.6-p0)
hunter_default_version(ros_comm VERSION 1.14.3-p1)
hunter_default_version(ros_comm_msgs VERSION 1.11.2-p0)
Expand Down
11 changes: 11 additions & 0 deletions cmake/projects/Boost/hunter.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,17 @@ hunter_add_version(
509db0247aebdc15e835303ec9628b8493bc2449
)

hunter_add_version(
PACKAGE_NAME
Boost
VERSION
"1.86.0"
URL
"https://boostorg.jfrog.io/artifactory/main/release/1.86.0/source/boost_1_86_0.tar.gz"
SHA1
c248c60e2ce74c77cae3f678ede2f65491c4d815
)

# up until 1.63 sourcefourge was used
set(_hunter_boost_base_url "https://downloads.sourceforge.net/project/boost/boost/")
hunter_add_version(
Expand Down
24 changes: 24 additions & 0 deletions cmake/projects/lsquic/hunter.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#
# Copyright Quadrivium LLC
# All Rights Reserved
# SPDX-License-Identifier: Apache-2.0
#

# !!! DO NOT PLACE HEADER GUARDS HERE !!!

include(hunter_add_version)
include(hunter_cacheable)
include(hunter_download)
include(hunter_pick_scheme)

hunter_add_version(
PACKAGE_NAME lsquic
VERSION 4.0.9-qdrvm-1
URL https://github.com/qdrvm/lsquic/archive/refs/tags/v4.0.9-qdrvm-1.zip
SHA1 de4788a0a3c9edf46e96524a20f6dbe893f935ef
)

hunter_pick_scheme(DEFAULT url_sha1_cmake)

hunter_cacheable(lsquic)
hunter_download(PACKAGE_NAME lsquic)
7 changes: 7 additions & 0 deletions cmake/projects/rocksdb/hunter.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ hunter_add_version(
SHA1 "b969a4f8fd6fb96158050502719c9c7d74d20638"
)

hunter_add_version(
PACKAGE_NAME rocksdb
VERSION 9.6.1
URL "https://github.com/facebook/rocksdb/archive/refs/tags/v9.6.1.tar.gz"
SHA1 "be421f6e08b97ff26c0bb5f5cfc6d159411d2575"
)

if(MSVC)
hunter_cmake_args(rocksdb CMAKE_ARGS
WITH_TESTS=OFF
Expand Down

0 comments on commit 6a09597

Please sign in to comment.