diff options
| -rw-r--r-- | CMakeLists.txt | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 34a6dc7c..bd1ea543 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,7 +34,11 @@ endif()  find_package(Qt${QT_MAJOR_VERSION} ${REQUIRED_QT_VERSION} OPTIONAL_COMPONENTS Qml)  if (NOT ANDROID) -    option(KCONFIG_USE_DBUS "Build components using Qt${QT_MAJOR_VERSION}DBus" ON) +    set(default_kconfig_use_dbus ON) +    if(WIN32) +        set(default_kconfig_use_dbus OFF) +    endif() +    option(KCONFIG_USE_DBUS "Build components using Qt${QT_MAJOR_VERSION}DBus" ${default_kconfig_use_dbus})      if(KCONFIG_USE_DBUS)          find_package(Qt${QT_MAJOR_VERSION} ${REQUIRED_QT_VERSION} CONFIG REQUIRED DBus)      endif()  | 
