aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeOptions.txt
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2014-08-20 22:29:33 +0100
committerGraham Bloice <graham.bloice@trihedral.com>2014-08-22 22:04:33 +0000
commit06565a742411b3d5307cab70a85d5f196073eb90 (patch)
tree747a4255c35e0344d7661ec7c52d490b715180ea /CMakeOptions.txt
parent863b6646d6995b7f0a7c70aad845c7bb3f00dbc7 (diff)
Add WinSparkle to the CMake build to bring it into line with
the nmake build Change-Id: I944d0fe15b396cad4d0054b6fc359acb42ae3c9c Reviewed-on: https://code.wireshark.org/review/3755 Reviewed-by: Graham Bloice <graham.bloice@trihedral.com>
Diffstat (limited to 'CMakeOptions.txt')
-rw-r--r--CMakeOptions.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeOptions.txt b/CMakeOptions.txt
index 75e61658aa..6bf542de6c 100644
--- a/CMakeOptions.txt
+++ b/CMakeOptions.txt
@@ -56,6 +56,11 @@ 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)
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")