aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeOptions.txt
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2013-10-10 20:35:32 +0000
committerJörg Mayer <jmayer@loplof.de>2013-10-10 20:35:32 +0000
commit2a59ee58b8b6d42f5119d67f957b3dc76972b27d (patch)
tree1c861fe1a0ba11c6ae51c123f7f85c0d067e3647 /CMakeOptions.txt
parent561a0713d1fc3f32f9195115f467222bf53e2ea5 (diff)
Add Airpcap detection, use it by default on win32
QT5 compile working - NOT. It's almost working, except that I *still* need to get GTK detection working on Win :-( svn path=/trunk/; revision=52513
Diffstat (limited to 'CMakeOptions.txt')
-rw-r--r--CMakeOptions.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeOptions.txt b/CMakeOptions.txt
index c216d1e83e..0dea7c4ddb 100644
--- a/CMakeOptions.txt
+++ b/CMakeOptions.txt
@@ -28,7 +28,11 @@ option(ENABLE_PCAP "Enable libpcap support (required for capturing)" ON)
# 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)