aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeOptions.txt
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2021-12-23 13:55:15 -0800
committerGerald Combs <gerald@wireshark.org>2022-04-04 09:39:26 -0700
commit245f988e9e33426b9e1070dd1a9019fd07f5b81a (patch)
treecf2242148e9b4e26b321265b75b8c31fb08a8f06 /CMakeOptions.txt
parent2fdf85c6eb53cda1514f9112a52e9ceb1159a51e (diff)
Logshark: Add initial UI.
Add a separate UI application named "Logshark". It's currently a very thin superclass of Wireshark, but that will change over time. Based on work by Loris Degioanni.
Diffstat (limited to 'CMakeOptions.txt')
-rw-r--r--CMakeOptions.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeOptions.txt b/CMakeOptions.txt
index 26d76df7d6..d62c649ce5 100644
--- a/CMakeOptions.txt
+++ b/CMakeOptions.txt
@@ -1,7 +1,8 @@
# Build options for use by CMake
option(BUILD_wireshark "Build Wireshark" ON)
-if(BUILD_wireshark)
+option(BUILD_logshark "Build Logshark" OFF)
+if(BUILD_wireshark OR BUILD_logshark)
option(USE_qt6 "Use Qt6 instead of Qt5 - WIP, GUI developers only!" OFF)
endif()
option(BUILD_tshark "Build tshark" ON)