diff options
Diffstat (limited to 'CMakeOptions.txt')
-rw-r--r-- | CMakeOptions.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeOptions.txt b/CMakeOptions.txt index e91dddd87f..de6fa3f39f 100644 --- a/CMakeOptions.txt +++ b/CMakeOptions.txt @@ -77,7 +77,9 @@ option(ENABLE_GEOIP "Build with GeoIP support" ON) if(WIN32) option(ENABLE_WINSPARKLE "Enable WinSparkle support" ON) endif() -option(ENABLE_CAP "Build with Posix capabilities support" ON) +if (NOT WIN32) + option(ENABLE_CAP "Build with Posix capabilities support" ON) +endif() option(ENABLE_CARES "Build with c-ares support" ON) if(UNIX) # Libnl is Linux-specific. |