Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wabt and boringssl #140

Merged
merged 3 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cmake/configs/default.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ endif()
hunter_default_version(Boost.DI VERSION 1.1.0-p1)
hunter_default_version(BoostCompute VERSION 0.5-p0)
hunter_default_version(BoostProcess VERSION 0.5)
hunter_default_version(BoringSSL VERSION 0.0.0-0f5ecd3a8-p0)
hunter_default_version(BoringSSL VERSION qdrvm1)
hunter_default_version(Box2D VERSION 2.3.1-p0)
hunter_default_version(CLAPACK VERSION 3.2.1)
hunter_default_version(CLI11 VERSION 1.8.0)
Expand Down Expand Up @@ -533,6 +533,7 @@ hunter_default_version(uuid VERSION 1.0.3)
hunter_default_version(v8 VERSION 7.4.98-p3)
hunter_default_version(vectorial VERSION 0.0.0-ae7dc88-p0)
hunter_default_version(vorbis VERSION 1.3.6-p1)
hunter_default_version(wabt VERSION 1.0.34-qdrvm2)
hunter_default_version(wavm VERSION 1.0.14)
hunter_default_version(websocketpp VERSION 0.8.1-p0)
hunter_default_version(wt VERSION 4.0.4-p0)
Expand Down
7 changes: 7 additions & 0 deletions cmake/projects/BoringSSL/hunter.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ hunter_add_version(
fee17b226c3132edc44711365eb5ea023c55bb1d
)

hunter_add_version(
PACKAGE_NAME BoringSSL
VERSION qdrvm1
URL https://github.com/qdrvm/boringssl/archive/refs/tags/qdrvm1.zip
SHA1 374ec62e063a3fe6d46b4608a6d8635f45162410
)

if(MSVC)
hunter_cmake_args(BoringSSL CMAKE_ARGS OPENSSL_NO_ASM=YES)
endif()
Expand Down
22 changes: 22 additions & 0 deletions cmake/projects/wabt/hunter.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
include(hunter_add_version)
include(hunter_cacheable)
include(hunter_download)
include(hunter_pick_scheme)

hunter_add_version(
PACKAGE_NAME wabt
VERSION 1.0.34-qdrvm2
URL https://github.com/qdrvm/wabt/archive/refs/tags/1.0.34-qdrvm2.zip
SHA1 54d1f9db612c694f8101e3fee2722dd24e93f7c8
)

hunter_cmake_args(wabt CMAKE_ARGS
BUILD_TESTS=OFF
BUILD_TOOLS=OFF
BUILD_LIBWASM=OFF
USE_INTERNAL_SHA256=ON
)

hunter_pick_scheme(DEFAULT url_sha1_cmake)
hunter_cacheable(wabt)
hunter_download(PACKAGE_NAME wabt)