do not block gui for dbus requests

This commit is contained in:
arcan1s
2014-08-15 20:38:33 +04:00
parent 82c3690dcb
commit abbc5641cd
6 changed files with 152 additions and 3 deletions

View File

@ -28,12 +28,16 @@ option (BUILD_HELPER "Build helper" ON)
option (BUILD_LIBRARY "Build library" ON)
option (BUILD_DATAENGINE "Build data engine" ON)
option (BUILD_PLASMOID "Build plasmoid" ON)
option (BUILD_TEST "Build unit test for the library" OFF)
if (BUILD_GUI OR BUILD_HELPER)
set (BUILD_LIBRARY ON)
endif ()
if (BUILD_PLASMOID)
set (BUILD_DATAENGINE ON)
endif ()
if (BUILD_TEST)
set (BUILD_LIBRARY ON)
endif ()
# documentation
option (BUILD_DOCS "Build documentation and install headers" ON)
if (BUILD_DOCS)
@ -66,6 +70,9 @@ endif ()
if (BUILD_HELPER)
add_subdirectory (helper)
endif ()
if (BUILD_TEST)
add_subdirectory (test)
endif ()
if (BUILD_GUI)
add_subdirectory (gui)
endif ()