Skip to content

Commit 87d11c5

Browse files
committed
UniRec output: add dependency on the newest UniRec and TRAP library
The newest UniRec library is required due to new function ur_array_append_get_ptr()
1 parent fc9ee68 commit 87d11c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

extra_plugins/output/unirec/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set(UNIREC_DESCRIPTION
77
)
88

99
set(UNIREC_VERSION_MAJOR 2)
10-
set(UNIREC_VERSION_MINOR 0)
10+
set(UNIREC_VERSION_MINOR 2)
1111
set(UNIREC_VERSION_PATCH 0)
1212
set(UNIREC_VERSION
1313
${UNIREC_VERSION_MAJOR}.${UNIREC_VERSION_MINOR}.${UNIREC_VERSION_PATCH})
@@ -19,9 +19,9 @@ include(CheckCXXCompilerFlag)
1919
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMakeModules")
2020

2121
# Find IPFIXcol and libnf
22-
find_package(IPFIXcol2 2.0.0 REQUIRED)
23-
find_package(LibTrap REQUIRED)
24-
find_package(LibUnirec REQUIRED)
22+
find_package(IPFIXcol2 2.1.0 REQUIRED) # support for basicList is required
23+
find_package(LibTrap 1.13.1 REQUIRED)
24+
find_package(LibUnirec 2.8.0 REQUIRED)
2525

2626
# Set default build type if not specified by user
2727
if (NOT CMAKE_BUILD_TYPE)

0 commit comments

Comments
 (0)