Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:
fail-on-error: true

- name: Deploy coverage report to codecov
uses: codecov/codecov-action@v5.5.3
uses: codecov/codecov-action@v7.0.0
with:
token: ${{secrets.CODECOV_TOKEN}}
flags: unittests
Expand Down
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ endif()

find_package(PkgConfig REQUIRED)
find_package(Threads REQUIRED)
find_package(OpenSSL REQUIRED)

add_subdirectory(core)

Expand Down
21 changes: 9 additions & 12 deletions core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,16 @@ set(PUBLIC_HEADERS
include/join/futex.hpp
include/join/function.hpp
include/join/thread.hpp
include/join/threadpool.hpp
include/join/macaddress.hpp
include/join/ipaddress.hpp
include/join/thread_pool.hpp
include/join/mac_address.hpp
include/join/ip_address.hpp
include/join/endpoint.hpp
include/join/protocol.hpp
include/join/socket.hpp
include/join/socketstream.hpp
include/join/datagram_socket.hpp
include/join/stream_socket.hpp
include/join/socket_stream.hpp
include/join/acceptor.hpp
include/join/openssl.hpp
include/join/cpu.hpp
include/join/clock.hpp
include/join/timer.hpp
Expand All @@ -57,11 +58,9 @@ set(SOURCES
src/condition.cpp
src/semaphore.cpp
src/thread.cpp
src/threadpool.cpp
src/openssl.cpp
src/macaddress.cpp
src/ipaddress.cpp
src/socket.cpp
src/thread_pool.cpp
src/mac_address.cpp
src/ip_address.cpp
src/cpu.cpp
)

Expand All @@ -86,8 +85,6 @@ target_include_directories(${JOIN_CORE}

target_link_libraries(${JOIN_CORE}
PUBLIC
OpenSSL::SSL
OpenSSL::Crypto
Threads::Threads
$<$<BOOL:${JOIN_ENABLE_IO_URING}>:${LIBURING_LIBRARIES}>
$<$<BOOL:${JOIN_ENABLE_NUMA}>:${NUMA_LIBRARIES}>
Expand Down
Loading