diff options
author | Jörg Mayer <jmayer@loplof.de> | 2013-10-10 20:35:32 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2013-10-10 20:35:32 +0000 |
commit | 2a59ee58b8b6d42f5119d67f957b3dc76972b27d (patch) | |
tree | 1c861fe1a0ba11c6ae51c123f7f85c0d067e3647 /CMakeOptions.txt | |
parent | 561a0713d1fc3f32f9195115f467222bf53e2ea5 (diff) | |
download | wireshark-2a59ee58b8b6d42f5119d67f957b3dc76972b27d.tar.gz wireshark-2a59ee58b8b6d42f5119d67f957b3dc76972b27d.tar.bz2 wireshark-2a59ee58b8b6d42f5119d67f957b3dc76972b27d.zip |
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.txt | 6 |
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) |