mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Added kqueue as conan package
This commit is contained in:
parent
0dbfd9b04e
commit
fde3a6b73f
1 changed files with 7 additions and 0 deletions
|
@ -35,6 +35,7 @@ if ( MSVC )
|
||||||
openssl/1.1.1i
|
openssl/1.1.1i
|
||||||
winflexbison/2.5.24
|
winflexbison/2.5.24
|
||||||
npcap-wpcap/1.31
|
npcap-wpcap/1.31
|
||||||
|
kqueue/2.3.2
|
||||||
GENERATORS cmake_find_package)
|
GENERATORS cmake_find_package)
|
||||||
|
|
||||||
# Install packages from conanfile
|
# Install packages from conanfile
|
||||||
|
@ -54,6 +55,12 @@ if ( MSVC )
|
||||||
find_package(ZLIB)
|
find_package(ZLIB)
|
||||||
set(ZLIB_LIBRARY ${ZLIB_LIBRARIES})
|
set(ZLIB_LIBRARY ${ZLIB_LIBRARIES})
|
||||||
|
|
||||||
|
# Set Kqueue to point at the right variable.
|
||||||
|
find_package(kqueue)
|
||||||
|
set(LIBKQUEUE_ROOT_DIR "${kqueue_INCLUDES}/../")
|
||||||
|
set(LIBKQUEUE_INCLUDE_DIRS ${kqueue_INCLUDES})
|
||||||
|
set(LIBKQUEUE_LIBRARIES ${kqueue_LIBS})
|
||||||
|
|
||||||
add_subdirectory(auxil/libunistd)
|
add_subdirectory(auxil/libunistd)
|
||||||
set(UNISTD_INCLUDES ${CMAKE_SOURCE_DIR}/auxil/libunistd/unistd ${CMAKE_SOURCE_DIR}/auxil/libunistd/regex)
|
set(UNISTD_INCLUDES ${CMAKE_SOURCE_DIR}/auxil/libunistd/unistd ${CMAKE_SOURCE_DIR}/auxil/libunistd/regex)
|
||||||
include_directories(BEFORE ${UNISTD_INCLUDES})
|
include_directories(BEFORE ${UNISTD_INCLUDES})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue