Skip to content

Commit

Permalink
mc: move multicast module from baresip to baresip-apps
Browse files Browse the repository at this point in the history
  • Loading branch information
cspiel1 authored and sreimers committed Apr 29, 2024
1 parent faa9e34 commit e573680
Show file tree
Hide file tree
Showing 8 changed files with 3,027 additions and 0 deletions.
1 change: 1 addition & 0 deletions cmake/modules.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ set(MODULES
vidloop
parcall
qualify
multicast
)

if(FVAD_FOUND)
Expand Down
12 changes: 12 additions & 0 deletions modules/multicast/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
project(multicast)

list(APPEND MODULES_DETECTED ${PROJECT_NAME})
set(MODULES_DETECTED ${MODULES_DETECTED} PARENT_SCOPE)

set(SRCS multicast.c player.c receiver.c sender.c source.c)

if(STATIC)
add_library(${PROJECT_NAME} OBJECT ${SRCS})
else()
add_library(${PROJECT_NAME} MODULE ${SRCS})
endif()
Loading

0 comments on commit e573680

Please sign in to comment.