We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c2b2da commit fbd2265Copy full SHA for fbd2265
tests/unit/CMakeLists.txt
@@ -13,6 +13,7 @@ unit_tests_register_test("core/verbose.cpp")
13
14
add_subdirectory(core/parser)
15
add_subdirectory(core/netflow)
16
+add_subdirectory(core/message_builder)
17
# >> Add your new tests or test subdirectories HERE <<
18
19
# Enable code coverage target (i.e. make coverage) when appropriate build
tests/unit/core/message_builder/CMakeLists.txt
@@ -0,0 +1,10 @@
1
+# Add header files of the IPFIX Message generator
2
+include_directories(../../tools)
3
+
4
+set(AUX_TOOLS
5
+ "../../tools/MsgGen.cpp"
6
+ "../../tools/MsgGen.h"
7
+)
8
9
+# Register tests
10
+unit_tests_register_test(message_builder.cpp ${AUX_TOOLS})
0 commit comments