aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeOptions.txt
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2010-05-15 20:41:53 +0000
committerJörg Mayer <jmayer@loplof.de>2010-05-15 20:41:53 +0000
commite4eecc5215b8c6521931a15951b71a522ba826bd (patch)
treeafac8a8cd2b6d3f7597e5e08563dd3e5ea2e895d /CMakeOptions.txt
parent682b962e72325451467f1a296d97169cc649f6b3 (diff)
- Move cmake options into their own file, making it easier to
use a locally modified version of the stuff - Some (still preliminary) CPack changes - Add -fexcess-precision=fast (configure.in and CmakeLists.txt) to the compileflags (new gcc-4.5 feature to maintain backward compatibility with gcc-4.4 and IMO we don't need the slower but more exact implementation gcc 4.5 offers. svn path=/trunk/; revision=32823
Diffstat (limited to 'CMakeOptions.txt')
-rw-r--r--CMakeOptions.txt41
1 files changed, 41 insertions, 0 deletions
diff --git a/CMakeOptions.txt b/CMakeOptions.txt
new file mode 100644
index 0000000000..24b1c5d34b
--- /dev/null
+++ b/CMakeOptions.txt
@@ -0,0 +1,41 @@
+# Build options for use by CMake
+
+# $Id$
+
+option(BUILD_wireshark "Build the GUI version of Wireshark" ON)
+option(BUILD_tshark "Build tshark" 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_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 dcerpc 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_AIRPCAP "Enable Airpcap support" ON)
+# todo
+option(ENABLE_STATIC "Build a static version of Wireshark (not yet working)" OFF)
+option(ENABLE_PLUGINS "Build with plugins" ON)
+# todo
+option(ENABLE_GUIDES "Build Guides" ON)
+
+option(ENABLE_ADNS "Build with adns support" ON)
+option(ENABLE_PCRE "Build with pcre 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" ON)
+option(ENABLE_SMI "Build with smi 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)
+option(ENABLE_CAP "Build with posix capabilities support" ON)
+option(ENABLE_CARES "Build with c_ares support" ON)
+# todo Mostly hardcoded
+option(ENABLE_KERBEROS "Build with Kerberos support" ON)
+