Skip to content

Commit 4a10df0

Browse files
committed
ipfixprobe - introduce packet parser
1 parent 9c6919d commit 4a10df0

File tree

7 files changed

+12
-0
lines changed

7 files changed

+12
-0
lines changed

src/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
add_subdirectory(core)
2+
add_subdirectory(plugins)
23

34
configure_file(
45
${CMAKE_SOURCE_DIR}/src/buildConfig.hpp.in

src/plugins/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
add_subdirectory(input)

src/plugins/input/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
add_subdirectory(parser)
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
add_library(ipfixprobe-parser STATIC
2+
parser.hpp
3+
parser.cpp
4+
headers.hpp
5+
)
6+
7+
target_include_directories(ipfixprobe-parser PUBLIC ${CMAKE_SOURCE_DIR}/include)
8+
9+
set_property(TARGET ipfixprobe-parser PROPERTY POSITION_INDEPENDENT_CODE ON)

0 commit comments

Comments
 (0)