mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Introduce --enable-static-broker configuration option.
This option will build the bundled broker (and caf) statically.
This commit is contained in:
parent
5249a16384
commit
f7ad94f757
3 changed files with 13 additions and 2 deletions
|
@ -271,9 +271,16 @@ if ( BROKER_ROOT_DIR )
|
|||
set(brodeps ${brodeps} ${BROKER_LIBRARY} ${CAF_LIBRARIES})
|
||||
include_directories(BEFORE ${BROKER_INCLUDE_DIR})
|
||||
else ()
|
||||
if ( BUILD_STATIC_BROKER )
|
||||
set(ENABLE_STATIC_ONLY true)
|
||||
endif()
|
||||
add_subdirectory(aux/broker)
|
||||
|
||||
set(brodeps ${brodeps} broker)
|
||||
if ( BUILD_STATIC_BROKER )
|
||||
set(brodeps ${brodeps} broker_static)
|
||||
else()
|
||||
set(brodeps ${brodeps} broker)
|
||||
endif()
|
||||
include_directories(BEFORE ${CMAKE_CURRENT_SOURCE_DIR}/aux/broker
|
||||
${CMAKE_CURRENT_BINARY_DIR}/aux/broker)
|
||||
endif ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue