Git commit 8621f8441d53595b124b288bad70eb7884191da8 by Patrick von Reth Pushed by vonreth into branch master disabled strigidaemon for windows, it wont build becasue of use of pipe and other stuff M +3 -1 CMakeLists.txt http://commits.kde.org/3a0142b1/8621f8441d53595b124b288bad70eb7884191da8 diff --git a/CMakeLists.txt b/CMakeLists.txt index 8f76b85..427c846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,8 +61,10 @@ else() add_subdirectory(libstreams) add_subdirectory(libstreamanalyzer) add_subdirectory(strigiutils) - if(NOT MSVC) + if(NOT WIN32) add_subdirectory(strigidaemon) + endif(NOT WIN32) + if(NOT MSVC) add_subdirectory(strigiclient) endif(NOT MSVC) endif()