Do one or more of the following:
[metze/wireshark/wip.git] / CMakeOptions.txt
index 17a6c146eb5a1e9ec05c7c42e7145530a519dc45..4579ab9f63a566f0242ec63fc8077e09a49ba6d2 100644 (file)
@@ -3,7 +3,7 @@
 # $Id$
 
 option(BUILD_wireshark   "Build the GTK+-GUI version of Wireshark" ON)
-option(BUILD_qtshark     "Build the Qt-GUI version of Wireshark" OFF)
+option(BUILD_qtshark     "Build the Qt-GUI version of Wireshark" ON)
 option(BUILD_tshark      "Build tshark" ON)
 option(BUILD_rawshark    "Build rawshark" ON)
 option(BUILD_dumpcap     "Build dumpcap" ON)
@@ -20,15 +20,20 @@ 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" OFF)
+option(ENABLE_QT5        "Use Qt5 instead of Qt4 to build qtshark" ON)
 option(ENABLE_PCAP       "Enable libpcap support (required for capturing)" ON)
+option(WANT_PACKET_EDITOR      "Enable packet editor (experimental)" ON)
 #
 # Do not make this the default on UN*X; AirPcap support is available
 # only on Windows.  It might be nice to have it, on Windows, check
 # whether the AirPcap SDK is available, and turn AirPcap support on
 # only if it is.
 #
-option(ENABLE_AIRPCAP    "Enable AirPcap support" OFF)
+if(WIN32)
+       option(ENABLE_AIRPCAP    "Enable AirPcap support" ON)
+else()
+       option(ENABLE_AIRPCAP    "Enable AirPcap support" OFF)
+endif()
 # todo
 option(ENABLE_STATIC     "Build a static version of Wireshark (not yet working)" OFF)
 option(ENABLE_ECHLD      "Enable echld support" OFF)