PPP: remove obsolete Van Jacobson decompression preference
[metze/wireshark/wip.git] / CMakeOptions.txt
index 5d6cb809d68b9440341fd5c2a91c0d41901f4508..ac6565bcc67a59065d342e55bb929dade74606f0 100644 (file)
@@ -1,25 +1,40 @@
 # Build options for use by CMake
 
-option(BUILD_wireshark   "Build the GTK+-GUI version of Wireshark" ON)
-option(BUILD_qtshark     "Build the Qt-GUI version of Wireshark" ON)
-option(BUILD_tshark      "Build tshark" ON)
-option(BUILD_tfshark     "Build tfshark" ON)
-option(BUILD_rawshark    "Build rawshark" ON)
-option(BUILD_dumpcap     "Build dumpcap" ON)
-option(BUILD_text2pcap   "Build text2pcap" ON)
-option(BUILD_mergecap    "Build mergecap" ON)
-option(BUILD_reordercap  "Build reordercap" ON)
-option(BUILD_editcap     "Build editcap" ON)
-option(BUILD_capinfos    "Build capinfos" ON)
-option(BUILD_randpkt     "Build randpkt" ON)
-option(BUILD_dftest      "Build dftest" ON)
-option(AUTOGEN_dcerpc    "Autogenerate DCE RPC dissectors" OFF)
-option(AUTOGEN_pidl      "Autogenerate pidl dissectors" OFF)
+option(BUILD_wireshark     "Build Wireshark" ON)
+option(BUILD_wireshark_gtk "Build Wireshark (GTK+ UI)" ON)
+option(BUILD_tshark        "Build tshark" ON)
+option(BUILD_tfshark       "Build tfshark" ON)
+option(BUILD_rawshark      "Build rawshark" ON)
+option(BUILD_dumpcap       "Build dumpcap" ON)
+option(BUILD_text2pcap     "Build text2pcap" ON)
+option(BUILD_mergecap      "Build mergecap" ON)
+option(BUILD_reordercap    "Build reordercap" ON)
+option(BUILD_editcap       "Build editcap" ON)
+option(BUILD_capinfos      "Build capinfos" ON)
+option(BUILD_captype       "Build captype" ON)
+option(BUILD_randpkt       "Build randpkt" ON)
+option(BUILD_dftest        "Build dftest" ON)
+option(BUILD_androiddump   "Build androiddump" ON)
+option(BUILD_sshdump       "Build sshdump" ON)
+option(BUILD_randpktdump   "Build randpktdump" ON)
+option(AUTOGEN_dcerpc      "Autogenerate DCE RPC dissectors" OFF)
+option(AUTOGEN_pidl        "Autogenerate pidl dissectors" OFF)
 
-option(DISABLE_WERROR    "Do not treat Warnings as errors" OFF)
-option(ENABLE_EXTRA_GCC_CHECKS "Do additional -W checks in GCC (disables -Werror)" OFF)
-option(ENABLE_GTK3       "Use GTK3 instead of GTK2 to build wireshark" ON)
-option(ENABLE_QT5        "Use Qt5 instead of Qt4 to build qtshark" ON)
+option(DISABLE_WERROR    "Do not treat warnings as errors" OFF)
+option(EXTCAP_ANDROIDDUMP_LIBPCAP    "Build androiddump using libpcap" OFF)
+option(ENABLE_EXTRA_COMPILER_WARNINGS "Do additional compiler warnings (disables -Werror)" OFF)
+option(ENABLE_CODE_ANALYSIS "Enable the compiler's static analyzer if possible" OFF)
+option(ENABLE_ASAN "Enable AddressSanitizer (ASAN) for debugging (May be slow down)" OFF)
+
+#
+# Leave GTK2 the default on Windows, looks better than GTK3
+#
+if(WIN32)
+       option(ENABLE_GTK3       "Use GTK3 instead of GTK2 to build wireshark" OFF)
+else()
+       option(ENABLE_GTK3       "Use GTK3 instead of GTK2 to build wireshark" ON)
+endif()
+option(ENABLE_QT5        "Use Qt5 instead of Qt4 to build wireshark" ON)
 option(ENABLE_PCAP       "Enable libpcap support (required for capturing)" ON)
 option(WANT_PACKET_EDITOR      "Enable packet editor (experimental)" ON)
 #
@@ -37,21 +52,35 @@ endif()
 option(ENABLE_STATIC     "Build a static version of Wireshark (not yet working)" OFF)
 option(ENABLE_ECHLD      "Enable echld support" OFF)
 option(ENABLE_PLUGINS    "Build with plugins" ON)
-option(ENABLE_GUIDES     "Build Guides" OFF)
+option(ENABLE_EXTCAP     "Build with extcap hooks" ON)
+option(ENABLE_HTML_GUIDES       "Build HTML User & Developer Guides" OFF)
+option(ENABLE_PDF_GUIDES        "Build PDF User & Developer Guides" OFF)
+option(ENABLE_CHM_GUIDES        "Build HTML Help User & Developer Guides" OFF)
 option(ENABLE_PCAP_NG_DEFAULT  "Enable pcap-ng as default file format" ON)
 
 option(ENABLE_ADNS       "Build with adns support" ON)
 option(ENABLE_PORTAUDIO  "Build with PortAudio support" ON)
 option(ENABLE_ZLIB       "Build with zlib compression support" ON)
 option(ENABLE_LUA        "Build with Lua dissector support" ON)
-option(ENABLE_PYTHON     "Build with Python dissector support" OFF)
 option(ENABLE_SMI        "Build with libsmi snmp support" ON)
 option(ENABLE_GNUTLS     "Build with GNU TLS support" ON)
 option(ENABLE_GCRYPT     "Build with GNU crypto support" ON)
 option(ENABLE_GEOIP      "Build with GeoIP support" ON)
+if(WIN32)
+       option(ENABLE_WINSPARKLE "Enable WinSparkle support" ON)
+else()
+       option(ENABLE_WINSPARKLE "Enable WinSparkle support" OFF)
+endif()
 option(ENABLE_CAP        "Build with Posix capabilities support" ON)
 option(ENABLE_CARES      "Build with c-ares support" ON)
-option(ENABLE_NETLINK    "Build with libnl support" ON)
+#
+# Libnl is Linux-specific.
+#
+if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
+       option(ENABLE_NETLINK    "Build with libnl support" ON)
+else()
+       option(ENABLE_NETLINK    "Build with libnl support" OFF)
+endif()
 # todo Mostly hardcoded
 option(ENABLE_KERBEROS   "Build with Kerberos support" ON)
 option(ENABLE_SBC        "Build with SBC Codec support in RTP Player" ON)
@@ -59,4 +88,8 @@ option(ENABLE_SBC        "Build with SBC Codec support in RTP Player" ON)
 set(DUMPCAP_INSTALL_OPTION   "normal" CACHE STRING "Permissions to install")
 set(DUMPCAP_INST_VALS "normal" "suid" "capabilities")
 set_property(CACHE DUMPCAP_INSTALL_OPTION PROPERTY STRINGS ${DUMPCAP_INST_VALS})
-
+if(APPLE)
+       option(ENABLE_APPLICATION_BUNDLE "Build an OS X application bundle (Wireshark.app)" ON)
+else()
+       option(ENABLE_APPLICATION_BUNDLE "Build an OS X application bundle (Wireshark.app)" OFF)
+endif()