diff options
author | Guy Harris <guy@alum.mit.edu> | 2017-09-28 18:15:46 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2017-09-28 18:15:46 -0700 |
commit | d16d92e520b7105c2d511bbe3e1ae4ce6cceda4f (patch) | |
tree | c287dae3cca840f351703705b53c624f01eb0ea3 | |
parent | d222b424e21177488a2b3f7af52d9f13f8ae7558 (diff) |
Add comments.
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index efebfb76..f45f5ae8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -59,6 +59,9 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux") option(BUILD_WITH_LIBNL "Build with libnl" ON) endif() +# +# Additional capture modules. +# option(DISABLE_USB "Disable USB sniffing support" OFF) option(DISABLE_BLUETOOTH "Disable Bluetooth sniffing support" OFF) option(DISABLE_NETMAP "Disable netmap support" OFF) @@ -86,6 +89,9 @@ set(SNF_ROOT "/opt/snf" CACHE PATH "Path to directory with include and lib subdi option(DISABLE_TURBOCAP "Disable Riverbed TurboCap support" OFF) set(TURBOCAP_ROOT "" CACHE PATH "Path to directory with include and lib subdirectories for Riverbed TurboCap API") +# +# Debugging options. +# option(BDEBUG "Build optimizer debugging code" OFF) option(YYDEBUG "Build parser debugging code" OFF) |