FIX: fixed dependencies changed compiler
continuous-integration/drone Build is passing Details

This commit is contained in:
Dominik Meyer 2023-09-04 11:51:42 +02:00
parent 44ba3b23cd
commit 690e600f0f
Signed by: byterazor
GPG Key ID: EABDA0FD5981BC97
2 changed files with 4 additions and 4 deletions

View File

@ -16,8 +16,8 @@ steps:
image: debian:bookworm-slim
commands:
- apt-get update
- apt-get -qy install clang-15 libsodium-dev libpgm-dev cmake make build-essential pkg-config
- apt-get -qy install gcc-12 libsodium-dev cmake make build-essential pkg-config
- mkdir build
- cd build; CC=clang-15 CXX=clang++-15 cmake ..
- cd build; cmake ..
- make -j 4
- make test

View File

@ -45,8 +45,8 @@ IF(NOT TARGET libzmq)
set(BUILD_STATIC ON CACHE BOOL "enable building zmq as static library")
set(ENABLE_DRAFTS ON CACHE BOOL "enable zmq drafts")
set(ENABLE_RADIX_TREE ON CACHE BOOL "enable ENABLE_RADIX_TREE drafts")
set(ENABLE_WS ON CACHE BOOL "enable websocket support")
set(WITH_OPENPGM ON CACHE BOOL "enable pgm protocol")
set(ENABLE_WS OFF CACHE BOOL "enable websocket support")
set(WITH_OPENPGM OFF CACHE BOOL "enable pgm protocol")
set(WITH_LIBSODIUM ON CACHE BOOL "enable static libsodium support")
set(WITH_LIBSODIUM_STATIC ON CACHE BOOL "enable static libsodium support")
set(ENABLE_CURVE ON CACHE BOOL "enable curve cryptography in libsodium support")