diff options
author | Marco Trinelli <marcotrinelli@gmail.com> | 2021-03-23 15:55:01 +0100 |
---|---|---|
committer | Marco Trinelli <marcotrinelli@gmail.com> | 2021-03-25 16:53:16 +0100 |
commit | 9f30bf6e794a7b431217ce91038a4ec0f917dc08 (patch) | |
tree | 32d58faf4e61045730e1fedc58153b979ce1e420 /CMakeLists.txt | |
parent | eedc20451418af57a6ffe4c6d41652828f01b9fe (diff) |
[HICN-688] Include packethicn in hicn build
Add license headers
Add dependencies
Fix build for Ubuntu 18.04
Move doc
Signed-off-by: Marco Trinelli <marcotrinelli@gmail.com>
Change-Id: Ie92268d2d3a47c47746107ac6f9c34b21949671c
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 31f40aaa6..d6d67ec9f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,6 +35,7 @@ endif () option(BUILD_HICNPLUGIN "Build the hicn vpp plugin" OFF) option(BUILD_SYSREPOPLUGIN "Build the sysrepo plugin" OFF) option(BUILD_EXTRAS "Build external projects" OFF) +option(BUILD_WSPLUGIN "Build the hicn plugin for wireshark" OFF) option(BUILD_TELEMETRY "Build telemetry projects" OFF) option(BUILD_TESTS "Build unit tests" OFF) option(DISABLE_EXECUTABLES "Disable executables" OFF) @@ -71,6 +72,7 @@ list(APPEND dir_options BUILD_APPS BUILD_SYSREPOPLUGIN BUILD_EXTRAS + BUILD_WSPLUGIN BUILD_TELEMETRY ) @@ -83,6 +85,7 @@ set(BUILD_CTRL_DIR ctrl) set(BUILD_HICNPLUGIN_DIR hicn-plugin) set(BUILD_SYSREPOPLUGIN_DIR ctrl/sysrepo-plugins) set(BUILD_EXTRAS_DIR extras/) +set(BUILD_WSPLUGIN_DIR extras/packethicn) set(BUILD_TELEMETRY_DIR telemetry) ## Add enabled components |